mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -05:00
newer Fuzev2 doesn't seem to use B5 for button light
playing from µSD now works to some degree database update or copy between the 2 drives lock up git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27496 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
08c600ca07
commit
c57ba97246
2 changed files with 25 additions and 11 deletions
|
|
@ -59,14 +59,20 @@ void _backlight_off(void)
|
|||
|
||||
void _buttonlight_on(void)
|
||||
{
|
||||
GPIOB_DIR |= 1<<5;
|
||||
GPIOB_PIN(5) = (1<<5);
|
||||
buttonlight_is_on = 1;
|
||||
if (fuzev2_variant == 0)
|
||||
{
|
||||
GPIOB_DIR |= 1<<5;
|
||||
GPIOB_PIN(5) = (1<<5);
|
||||
buttonlight_is_on = 1;
|
||||
}
|
||||
}
|
||||
|
||||
void _buttonlight_off(void)
|
||||
{
|
||||
GPIOB_PIN(5) = 0;
|
||||
GPIOB_DIR &= ~(1<<5);
|
||||
buttonlight_is_on = 0;
|
||||
if (fuzev2_variant == 0)
|
||||
{
|
||||
GPIOB_PIN(5) = 0;
|
||||
GPIOB_DIR &= ~(1<<5);
|
||||
buttonlight_is_on = 0;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue