summaryrefslogtreecommitdiff
path: root/bootloader/sansaview.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/sansaview.c')
-rw-r--r--bootloader/sansaview.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bootloader/sansaview.c b/bootloader/sansaview.c
index 03e24b8..7ea4b59 100644
--- a/bootloader/sansaview.c
+++ b/bootloader/sansaview.c
@@ -54,11 +54,11 @@ void main(void)
while(1)
{
- _backlight_on();
- _buttonlight_off();
+ backlight_hw_on();
+ buttonlight_hw_off();
sleep(HZ/4);
- _backlight_off();
- _buttonlight_on();
+ backlight_hw_off();
+ buttonlight_hw_on();
sleep(HZ/4);
}
}