1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Michael Sevakis 2007-07-08 13:02:52 +00:00
parent 32eddb44be
commit 1bbd58e2d8
4 changed files with 455 additions and 150 deletions

View file

@ -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