summaryrefslogtreecommitdiff
path: root/firmware/target/arm/as3525/sansa-fuzev2/backlight-fuzev2.c
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-05-15 16:21:47 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-05-15 16:21:47 +0000
commit79cfc221a5f9a46f220875e5222e3143479f1c1f (patch)
tree2a795dbe773957cf2e4bd1d4e63803fe5f508961 /firmware/target/arm/as3525/sansa-fuzev2/backlight-fuzev2.c
parent90ea991dff11bcb3cfc411d895115669ace8e636 (diff)
downloadrockbox-79cfc221a5f9a46f220875e5222e3143479f1c1f.tar.gz
rockbox-79cfc221a5f9a46f220875e5222e3143479f1c1f.zip
fuzev2: fix buttonlight flashing on µSD access (2nd try)
it would still flash when the light was off it turns out that if B5 is set to input the light can't be turned on but we can still select between µSD slot and internal storage git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26059 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/as3525/sansa-fuzev2/backlight-fuzev2.c')
-rw-r--r--firmware/target/arm/as3525/sansa-fuzev2/backlight-fuzev2.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/firmware/target/arm/as3525/sansa-fuzev2/backlight-fuzev2.c b/firmware/target/arm/as3525/sansa-fuzev2/backlight-fuzev2.c
index 1bc16babdd..29e145053c 100644
--- a/firmware/target/arm/as3525/sansa-fuzev2/backlight-fuzev2.c
+++ b/firmware/target/arm/as3525/sansa-fuzev2/backlight-fuzev2.c
@@ -35,9 +35,6 @@ void _backlight_set_brightness(int brightness)
35 35
36bool _backlight_init(void) 36bool _backlight_init(void)
37{ 37{
38 GPIOB_DIR |= 1<<5; /* for buttonlight, stuff below seems to be needed
39 for buttonlight as well*/
40
41 ascodec_write_pmu(AS3543_BACKLIGHT, 1, 0x80); 38 ascodec_write_pmu(AS3543_BACKLIGHT, 1, 0x80);
42 ascodec_write_pmu(AS3543_BACKLIGHT, 2, backlight_brightness * 10); 39 ascodec_write_pmu(AS3543_BACKLIGHT, 2, backlight_brightness * 10);
43 40
@@ -62,6 +59,7 @@ void _backlight_off(void)
62 59
63void _buttonlight_on(void) 60void _buttonlight_on(void)
64{ 61{
62 GPIOB_DIR |= 1<<5;
65 GPIOB_PIN(5) = (1<<5); 63 GPIOB_PIN(5) = (1<<5);
66 buttonlight_is_on = 1; 64 buttonlight_is_on = 1;
67} 65}
@@ -69,5 +67,6 @@ void _buttonlight_on(void)
69void _buttonlight_off(void) 67void _buttonlight_off(void)
70{ 68{
71 GPIOB_PIN(5) = 0; 69 GPIOB_PIN(5) = 0;
70 GPIOB_DIR &= ~(1<<5);
72 buttonlight_is_on = 0; 71 buttonlight_is_on = 0;
73} 72}