kopia lustrzana https://github.com/pjalocha/esp32-ogn-tracker
Bug fixed: incorrect #if to start the SENS task
rodzic
a57c54cc88
commit
5423ae48b3
|
@ -36,7 +36,7 @@ void app_main(void)
|
|||
xTaskCreate(vTaskRF, "RF", 2048, 0, tskIDLE_PRIORITY+4, 0);
|
||||
xTaskCreate(vTaskPROC, "PROC", 2048, 0, tskIDLE_PRIORITY+3, 0);
|
||||
xTaskCreate(vTaskGPS, "GPS", 2048, 0, tskIDLE_PRIORITY+4, 0);
|
||||
#if defined(BMP180) || defined(BMP280) || defined(MS5607)
|
||||
#if defined(WITH_BMP180) || defined(WITH_BMP280) || defined(WITH_MS5607)
|
||||
xTaskCreate(vTaskSENS, "SENS", 2048, 0, tskIDLE_PRIORITY+4, 0);
|
||||
#endif
|
||||
// xTaskCreate(vTaskCTRL, "CTRL", 1536, 0, tskIDLE_PRIORITY+2, 0);
|
||||
|
|
Ładowanie…
Reference in New Issue