main.cpp: small change in main loop
This commit is contained in:
parent
a3e26cad91
commit
24eed4a55e
@ -520,7 +520,9 @@ do_send(&sendjob);
|
||||
// Arduino main moop, runs on core 1
|
||||
// https://techtutorialsx.com/2017/05/09/esp32-get-task-execution-core/
|
||||
void loop() {
|
||||
|
||||
while(1) {
|
||||
|
||||
#ifdef HAS_BUTTON
|
||||
if (ButtonTriggered) {
|
||||
ButtonTriggered = false;
|
||||
@ -528,12 +530,12 @@ void loop() {
|
||||
eraseConfig();
|
||||
esp_restart();
|
||||
}
|
||||
else
|
||||
#endif
|
||||
{ vTaskDelay(500/portTICK_PERIOD_MS);
|
||||
|
||||
vTaskDelay(500/portTICK_PERIOD_MS);
|
||||
uptimecounter = uptime() / 1000; // count uptime seconds
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* end Aruino LOOP ------------------------------------------------------------ */
|
||||
|
Loading…
Reference in New Issue
Block a user