diff options
| author | Brandon Low <lostlogic@rockbox.org> | 2006-01-19 07:47:02 +0000 |
|---|---|---|
| committer | Brandon Low <lostlogic@rockbox.org> | 2006-01-19 07:47:02 +0000 |
| commit | 13414ae77a77d96ef2cb210d644880b847c9ca6f (patch) | |
| tree | ccdf95ca995642dbd59be4b7c7122248d9775c60 | |
| parent | ac22b06f372335ff47d1875b580dabcfd3bd9148 (diff) | |
| download | rockbox-13414ae77a77d96ef2cb210d644880b847c9ca6f.zip rockbox-13414ae77a77d96ef2cb210d644880b847c9ca6f.tar.gz rockbox-13414ae77a77d96ef2cb210d644880b847c9ca6f.tar.bz2 rockbox-13414ae77a77d96ef2cb210d644880b847c9ca6f.tar.xz | |
Initialize the MBC to off, idle state JinC
Fix a comment that had wrong voltage
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8382 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/drivers/pcf50606.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/drivers/pcf50606.c b/firmware/drivers/pcf50606.c index 969f7e5..af2c2ca 100644 --- a/firmware/drivers/pcf50606.c +++ b/firmware/drivers/pcf50606.c @@ -259,7 +259,7 @@ static void set_voltages(void) { static const unsigned char buf[5] = { - 0xf4, /* IOREGC = 3.3V, ON in all states */ + 0xf4, /* IOREGC = 2.9V, ON in all states */ 0xef, /* D1REGC = 2.4V, ON in all states */ 0x18, /* D2REGC = 3.3V, OFF in all states */ 0xf0, /* D3REGC = 2.5V, ON in all states */ @@ -283,6 +283,7 @@ void pcf50606_init(void) pcf50606_write(0x08, 0x60); /* Wake on USB and charger insertion */ pcf50606_write(0x09, 0x05); /* USB and ON key debounce: 14ms */ + pcf50606_write(0x29, 0x1C); /* Disable the unused MBC module */ /* Backlight PWM = 512Hz 50/50 */ /*pcf50606_write(0x35, 0x13);*/ |