File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -677,7 +677,6 @@ uint32_t maxSurveyInWait_s = 60L * 15L; // Re-start survey-in after X seconds
677
677
678
678
uint32_t lastSetupMenuChange; // Limits how much time is spent in the setup menu
679
679
uint32_t lastTestMenuChange; // Avoids exiting the test menu for at least 1 second
680
- bool setupDoubleTapRequired = false ; // In buttonCheckTask, require a double tap to proceed
681
680
uint8_t setupSelectedButton = 0 ; // In Display Setup, start displaying at this button. This is the selected (highlighted) button.
682
681
std::vector<setupButton> setupButtons; // A vector (linked list) of the setup 'butttons'
683
682
Original file line number Diff line number Diff line change @@ -407,10 +407,9 @@ void stateUpdate()
407
407
break ;
408
408
409
409
case (STATE_DISPLAY_SETUP): {
410
- if (millis () - lastSetupMenuChange > 30000 )
410
+ if (millis () - lastSetupMenuChange > 30000 ) // Exit Setup after 30s
411
411
{
412
412
// forceSystemStateUpdate = true; // Immediately go to this new state
413
- setupDoubleTapRequired = false ;
414
413
changeState (lastSystemState); // Return to the last system state
415
414
}
416
415
}
You can’t perform that action at this time.
0 commit comments