[Fix Red] define lcd_awake for targets with lcd_sleep

Change-Id: I62f8f7908f2877d4b255075120f87e3c9a375f66
This commit is contained in:
William Wilgus 2025-01-05 12:08:18 -05:00
parent 734cc3e8d1
commit 5d9b01b9ed
11 changed files with 54 additions and 0 deletions

View file

@ -48,3 +48,8 @@ void lcd_sleep(void)
{
backlight_hw_off();
}
void lcd_awake(void)
{
/* Nothing to do */
}

View file

@ -512,6 +512,11 @@ void lcd_enable(bool en)
# error "Do not define HAVE_LCD_SLEEP if target has LCD_X1000_FASTSLEEP"
#endif
void lcd_awake(void)
{
/* Nothing to do */
}
void lcd_sleep(void)
{
if(!lcd_sleeping) {