summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2006-01-11 15:36:20 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2006-01-11 15:36:20 +0000
commite5f129728e325cbc3dadeb79cd49f19cd00e6585 (patch)
tree4ebe1f2b0007a60b20accb8d0cb381ee4e17001d
parentcb01be69a68f3493c52a68bd61200ea5d0445204 (diff)
downloadrockbox-e5f129728e325cbc3dadeb79cd49f19cd00e6585.tar.gz
rockbox-e5f129728e325cbc3dadeb79cd49f19cd00e6585.zip
Enable the EXTON and CHG wakeup again
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8334 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/drivers/pcf50606.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/firmware/drivers/pcf50606.c b/firmware/drivers/pcf50606.c
index cb05d25345..969f7e5c28 100644
--- a/firmware/drivers/pcf50606.c
+++ b/firmware/drivers/pcf50606.c
@@ -281,7 +281,10 @@ void pcf50606_init(void)
281 281
282 set_voltages(); 282 set_voltages();
283 283
284 /* Backlight PWM = 512Hz 50/50 */ 284 pcf50606_write(0x08, 0x60); /* Wake on USB and charger insertion */
285 pcf50606_write(0x09, 0x05); /* USB and ON key debounce: 14ms */
286
287 /* Backlight PWM = 512Hz 50/50 */
285 /*pcf50606_write(0x35, 0x13);*/ 288 /*pcf50606_write(0x35, 0x13);*/
286 pcf50606_set_bl_pwm(9); 289 pcf50606_set_bl_pwm(9);
287} 290}