Sansa Clip+ has no button light

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24558 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2010-02-08 02:35:42 +00:00
parent 07a6de15bd
commit fbc59e2e28
3 changed files with 0 additions and 18 deletions

View file

@ -39,15 +39,3 @@ void _backlight_off(void)
ascodec_write(0x25, ascodec_read(0x25) & ~2); /* lcd power */
lcd_enable(false);
}
void _buttonlight_on(void)
{
GPIOA_DIR |= (1<<5);
GPIOA_PIN(5) = (1<<5); /* set pin a5 high */
}
void _buttonlight_off(void)
{
GPIOA_DIR |= (1<<5);
GPIOA_PIN(5) = 0; /* set pin a5 low */
}

View file

@ -26,7 +26,4 @@
void _backlight_on(void);
void _backlight_off(void);
void _buttonlight_on(void);
void _buttonlight_off(void);
#endif