summaryrefslogtreecommitdiff
path: root/firmware/powermgmt.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-07-08 13:02:52 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-07-08 13:02:52 +0000
commit1bbd58e2d8e4bf9c9942c5b70ff4e480a6fc56f2 (patch)
tree3dd2b077a3df6468b6226623db692c14fc27d0f9 /firmware/powermgmt.c
parent32eddb44be92d8d14ad757e87de652fd67b59c89 (diff)
downloadrockbox-1bbd58e2d8e4bf9c9942c5b70ff4e480a6fc56f2.tar.gz
rockbox-1bbd58e2d8e4bf9c9942c5b70ff4e480a6fc56f2.zip
e200 lcd mashup: 1) Enable flipped and inverted mode. 2) Fully enable all power options so that LCD driver IC's visible display is shut down with backlight and make the Sleep option available 3) Better framebuffer copy routine in assembly that confines updates to the specified rectangle _and_ is faster than memcpy 4) Some other offhand changes out of preference.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13818 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/powermgmt.c')
-rw-r--r--firmware/powermgmt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/powermgmt.c b/firmware/powermgmt.c
index 26323c43ab..484c97eda9 100644
--- a/firmware/powermgmt.c
+++ b/firmware/powermgmt.c
@@ -1290,12 +1290,12 @@ void shutdown_hw(void)
1290 while(ata_disk_is_active()) 1290 while(ata_disk_is_active())
1291 sleep(HZ/10); 1291 sleep(HZ/10);
1292 1292
1293#ifndef IAUDIO_X5 1293#if !defined (IAUDIO_X5) && !defined (SANSA_E200)
1294#if defined(HAVE_BACKLIGHT_PWM_FADING) && !defined(SIMULATOR) 1294#if defined(HAVE_BACKLIGHT_PWM_FADING) && !defined(SIMULATOR)
1295 backlight_set_fade_out(0); 1295 backlight_set_fade_out(0);
1296#endif 1296#endif
1297 backlight_off(); 1297 backlight_off();
1298#endif /* IAUDIO_X5 */ 1298#endif /* IAUDIO_X5, SANSA_E200 */
1299#ifdef HAVE_REMOTE_LCD 1299#ifdef HAVE_REMOTE_LCD
1300 remote_backlight_off(); 1300 remote_backlight_off();
1301#endif 1301#endif