Fix error in power handling of LCD FSM

This commit is contained in:
Mario Hüttel 2020-06-14 17:52:27 +02:00
parent 7b426c93c9
commit 828b47f3be
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ int reflow_menu_handle()
menu_handle(reflow_menu_ptr, (int16_t)rot_delta, button);
if (lcd_ret != LCD_FSM_WAIT_CALL || lcd_tick_100us >= 5) {
if (lcd_ret == LCD_FSM_CALL_AGAIN || lcd_tick_100us >= 5) {
lcd_ret = lcd_fsm_write_buffer(display_buffer);
lcd_tick_100us = 0UL;
}