Fixed battery mode main function call. Disabled some debug messages.
This commit is contained in:
parent
5fcfd89652
commit
76475b7c33
1 changed files with 5 additions and 8 deletions
|
@ -110,10 +110,7 @@ void setup()
|
||||||
#ifdef BATTERY_POWERED
|
#ifdef BATTERY_POWERED
|
||||||
debug("battery powered");
|
debug("battery powered");
|
||||||
|
|
||||||
do {
|
_battery_mode_main();
|
||||||
_battery_mode_main();
|
|
||||||
} while (fsm_state != FSM_STATE_1);
|
|
||||||
|
|
||||||
|
|
||||||
digitalWrite(STATUS_LED_PIN, LOW);
|
digitalWrite(STATUS_LED_PIN, LOW);
|
||||||
|
|
||||||
|
@ -128,9 +125,9 @@ void setup()
|
||||||
// sleep the system will run into the setup routine
|
// sleep the system will run into the setup routine
|
||||||
ESP.deepSleep(POWERSAVING_SLEEP_S * 1000000, WAKE_RF_DEFAULT);
|
ESP.deepSleep(POWERSAVING_SLEEP_S * 1000000, WAKE_RF_DEFAULT);
|
||||||
delay(100);
|
delay(100);
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef BATTERY_POWERED
|
#else // not in battery mode
|
||||||
|
|
||||||
#ifdef ENABLE_WATCHDOG
|
#ifdef ENABLE_WATCHDOG
|
||||||
// Enable the internal watchdog
|
// Enable the internal watchdog
|
||||||
ESP.wdtEnable(WATCHDOG_TIMEOUT_MS);
|
ESP.wdtEnable(WATCHDOG_TIMEOUT_MS);
|
||||||
|
@ -485,7 +482,7 @@ void _fsm_loop()
|
||||||
//debug("wait for wind sensor finish");
|
//debug("wait for wind sensor finish");
|
||||||
fsm_state = FSM_STATE_9; // stay here until the wind measurement is done
|
fsm_state = FSM_STATE_9; // stay here until the wind measurement is done
|
||||||
} else {
|
} else {
|
||||||
debug("wind sensor read finish");
|
//debug("wind sensor read finish");
|
||||||
fsm_state = FSM_STATE_10;
|
fsm_state = FSM_STATE_10;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
@ -514,7 +511,7 @@ void _fsm_loop()
|
||||||
//debug("wait for wind sensor finish");
|
//debug("wait for wind sensor finish");
|
||||||
fsm_state = FSM_STATE_11; // stay here until the wind measurement is done
|
fsm_state = FSM_STATE_11; // stay here until the wind measurement is done
|
||||||
} else {
|
} else {
|
||||||
debug("wind sensor read finish");
|
//debug("wind sensor read finish");
|
||||||
fsm_state = FSM_STATE_12;
|
fsm_state = FSM_STATE_12;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in a new issue