Formatting pass

This commit is contained in:
Ben V. Brown
2021-03-16 20:29:28 +11:00
parent 17f76b8c36
commit 41f0a1f347
3 changed files with 28 additions and 28 deletions

View File

@@ -195,7 +195,7 @@ void OLED::transitionSecondaryFramebuffer(bool forwardNavigation) {
memmove(&secondStripPtr[newStart], &secondBackStripPtr[newEnd], progress); memmove(&secondStripPtr[newStart], &secondBackStripPtr[newEnd], progress);
refresh(); refresh();
osDelay(TICKS_100MS/5); osDelay(TICKS_100MS / 5);
} }
} }

View File

@@ -1086,10 +1086,10 @@ static bool settings_enterAdvancedMenu(void) {
void gui_Menu(const menuitem *menu) { void gui_Menu(const menuitem *menu) {
// Draw the settings menu and provide iteration support etc // Draw the settings menu and provide iteration support etc
uint8_t currentScreen = 0; uint8_t currentScreen = 0;
uint32_t autoRepeatTimer = 0; TickType_t autoRepeatTimer = 0;
uint8_t autoRepeatAcceleration = 0; TickType_t autoRepeatAcceleration = 0;
bool earlyExit = false; bool earlyExit = false;
uint32_t descriptionStart = 0; TickType_t descriptionStart = 0;
int16_t lastOffset = -1; int16_t lastOffset = -1;
bool lcdRefresh = true; bool lcdRefresh = true;
ButtonState lastButtonState = BUTTON_NONE; ButtonState lastButtonState = BUTTON_NONE;