Fix smaller code mistake in LCD FSM

This commit is contained in:
Mario Hüttel 2020-06-13 23:37:04 +02:00
parent 2547c134f2
commit 7595e6ced8
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ enum lcd_fsm_ret lcd_fsm_write_buffer(const char (*display_buffer)[21])
if (!systick_ticks_have_passed(timestamp, 4)) {
ret = LCD_FSM_WAIT_CALL;
} else {
ret = LCD_FSM_WAIT_CALL;
ret = LCD_FSM_CALL_AGAIN;
state_cnt++;
}
break;