summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/backlight.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/firmware/backlight.c b/firmware/backlight.c
index caff55ce5e..e8a71af12c 100644
--- a/firmware/backlight.c
+++ b/firmware/backlight.c
@@ -209,15 +209,18 @@ static void backlight_lcd_sleep_countdown(bool start)
}
/* Start LCD sleep countdown */
- if (lcd_sleep_timeout < 0)
+ if (lcd_sleep_timeout <= 0)
{
- lcd_sleep_timer = 0; /* Setting == Always */
- /* Ensure lcd_sleep() is called from backlight_thread() */
+ lcd_sleep_timer = 0;
+ if (lcd_sleep_timeout == 0) /* Setting == Always */
+ {
+ /* Ensure lcd_sleep() is called from backlight_thread() */
#if (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_PWM)
- queue_post(&backlight_queue, LCD_SLEEP, 0);
+ queue_post(&backlight_queue, LCD_SLEEP, 0);
#else
- lcd_sleep();
+ lcd_sleep();
#endif
+ }
}
else
{