From 1bbd58e2d8e4bf9c9942c5b70ff4e480a6fc56f2 Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Sun, 8 Jul 2007 13:02:52 +0000 Subject: 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 --- firmware/powermgmt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'firmware/powermgmt.c') 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) while(ata_disk_is_active()) sleep(HZ/10); -#ifndef IAUDIO_X5 +#if !defined (IAUDIO_X5) && !defined (SANSA_E200) #if defined(HAVE_BACKLIGHT_PWM_FADING) && !defined(SIMULATOR) backlight_set_fade_out(0); #endif backlight_off(); -#endif /* IAUDIO_X5 */ +#endif /* IAUDIO_X5, SANSA_E200 */ #ifdef HAVE_REMOTE_LCD remote_backlight_off(); #endif -- cgit v1.2.3