From 47e1f964273e29c4f6f2923b3bb814b087c7af47 Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Fri, 13 Nov 2020 13:57:39 -0500 Subject: Bugfix Backlight_init should be called after lcd_init the rest.. Change-Id: I50585ba2191aa8134de3045b1445859b27503a68 --- bootloader/ipodnano2g.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bootloader/ipodnano2g.c') diff --git a/bootloader/ipodnano2g.c b/bootloader/ipodnano2g.c index 85bb2df86d..23a3557ae2 100644 --- a/bootloader/ipodnano2g.c +++ b/bootloader/ipodnano2g.c @@ -184,11 +184,11 @@ void main(void) enable_irq(); - backlight_init(); /* Turns on the backlight */ - lcd_init(); font_init(); + backlight_init(); /* Turns on backlight -- BUGFIX backlight_init MUST BE AFTER lcd_init */ + lcd_set_foreground(LCD_WHITE); lcd_set_background(LCD_BLACK); lcd_clear_display(); -- cgit v1.2.3