diff options
author | William Wilgus <wilgus.william@gmail.com> | 2020-11-13 13:57:39 -0500 |
---|---|---|
committer | William Wilgus <wilgus.william@gmail.com> | 2020-11-13 13:57:39 -0500 |
commit | 47e1f964273e29c4f6f2923b3bb814b087c7af47 (patch) | |
tree | 54fce455e3715721e02461a9ef7d59e6fc7ef3a9 /bootloader/iriver_h1x0.c | |
parent | f65fb2a64abaf66b4d695be7fb3e114febea6bd1 (diff) |
Bugfix Backlight_init should be called after lcd_init
the rest..
Change-Id: I50585ba2191aa8134de3045b1445859b27503a68
Diffstat (limited to 'bootloader/iriver_h1x0.c')
-rw-r--r-- | bootloader/iriver_h1x0.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/bootloader/iriver_h1x0.c b/bootloader/iriver_h1x0.c index 8fd95d048c..f79c7c9aaf 100644 --- a/bootloader/iriver_h1x0.c +++ b/bootloader/iriver_h1x0.c @@ -485,14 +485,13 @@ void main(void) try_flashboot(); # endif - backlight_init(); - - lcd_init(); if (!rc_on_button) lcd_remote_init(); - + + backlight_init(); /* BUGFIX backlight_init MUST BE AFTER lcd_init */ + /* Bootloader uses simplified backlight thread, so we need to enable remote display here. */ if (remote_detect()) |