Merge pull request #1110 from PavelSindler/lcd_clicked_error_fix
lcd_clicked() fix (PFW-534 and PFW-546)
This commit is contained in:
commit
cbc506c379
|
|
@ -687,7 +687,7 @@ LongTimer lcd_timeoutToStatus;
|
||||||
uint8_t lcd_clicked(void)
|
uint8_t lcd_clicked(void)
|
||||||
{
|
{
|
||||||
bool clicked = LCD_CLICKED;
|
bool clicked = LCD_CLICKED;
|
||||||
if(clicked) lcd_button_pressed = 1;
|
if(clicked) lcd_button_pressed = 0;
|
||||||
return clicked;
|
return clicked;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue