mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
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:
parent
0a8446ad7d
commit
8f7f219dba
2 changed files with 9 additions and 14 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue