FS#9511 - working lcd update (and lcd_update_rect() ) for the e200v2, working button light also

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18914 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2008-10-29 06:11:33 +00:00
parent 0a8446ad7d
commit 8f7f219dba
2 changed files with 9 additions and 14 deletions

View file

@ -62,10 +62,12 @@ void _backlight_off(void)
void _buttonlight_on(void)
{
/* TODO */
GPIOD_PIN(7) = (1<<7);
GPIOD_DIR |= (1<<7);
}
void _buttonlight_off(void)
{
/* TODO */
GPIOD_PIN(7) = 0;
GPIOD_DIR |= (1<<7);
}