diff options
| author | Szymon Dziok <b0hoon@o2.pl> | 2011-09-11 11:58:46 +0000 |
|---|---|---|
| committer | Szymon Dziok <b0hoon@o2.pl> | 2011-09-11 11:58:46 +0000 |
| commit | 6f00e82512e645627f25263e75e54a61d72f9fb5 (patch) | |
| tree | 277de1bb11dc0f46bb4ea654f317bee80b6d23f1 | |
| parent | 6c1de04a6315f0a970ea10b72af35c05bff2ce02 (diff) | |
| download | rockbox-6f00e82512e645627f25263e75e54a61d72f9fb5.zip rockbox-6f00e82512e645627f25263e75e54a61d72f9fb5.tar.gz rockbox-6f00e82512e645627f25263e75e54a61d72f9fb5.tar.bz2 rockbox-6f00e82512e645627f25263e75e54a61d72f9fb5.tar.xz | |
HDD6330: Fix random strange behavior of the touchpad. Setting the sensitivity higher than normal is not a good idea for this one.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30504 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/target/arm/philips/power-hdd.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/firmware/target/arm/philips/power-hdd.c b/firmware/target/arm/philips/power-hdd.c index 4806276..9f1c047 100644 --- a/firmware/target/arm/philips/power-hdd.c +++ b/firmware/target/arm/philips/power-hdd.c @@ -61,7 +61,7 @@ void power_init(void) GPIOD_OUTPUT_VAL |= 0x80; /* high */ GPIOA_OUTPUT_EN &= ~0x20; /* CLK */ - + GPIOA_OUTPUT_EN |= 0x10; /* set DATA */ GPIOA_OUTPUT_VAL |= 0x10; /* high */ @@ -70,8 +70,6 @@ void power_init(void) logf("touchpad not ready"); } #if defined(PHILIPS_HDD6330) - /* set the maximum touch sensivity */ - touchpad_set_parameter(0,0x20,0x7785); /* reduce transmission overhead */ touchpad_set_parameter(0,0x21,0x0008); /* set GPO_LEVELS = 0 - for the buttonlights */ |