diff options
Diffstat (limited to 'bootloader/telechips.c')
| -rw-r--r-- | bootloader/telechips.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bootloader/telechips.c b/bootloader/telechips.c index d2cf10e..879e72a 100644 --- a/bootloader/telechips.c +++ b/bootloader/telechips.c @@ -82,10 +82,10 @@ void show_debug_screen(void) } #if 0 if (button & BUTTON_SELECT){ - _backlight_off(); + backlight_hw_off(); } else{ - _backlight_on(); + backlight_hw_on(); } #endif printf("Btn: 0x%08x",button); @@ -147,7 +147,7 @@ void* main(void) show_logo(); - _backlight_on(); + backlight_hw_on(); /* Only load the firmware if TCCBOOT is defined - this ensures SDRAM_START is available for loading the firmware. Otherwise display the debug screen. */ |