diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2010-06-19 20:09:37 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2010-06-19 20:09:37 +0000 |
| commit | b7a8935dffe82ceb40b63d7c6e97017a6dfac064 (patch) | |
| tree | ad05207c4c7fe5ba9abc7ea034b04ef1d1274f87 /firmware/export | |
| parent | 86767233001fd9b381f5283815378bcc1e9dd732 (diff) | |
| download | rockbox-b7a8935dffe82ceb40b63d7c6e97017a6dfac064.zip rockbox-b7a8935dffe82ceb40b63d7c6e97017a6dfac064.tar.gz rockbox-b7a8935dffe82ceb40b63d7c6e97017a6dfac064.tar.bz2 rockbox-b7a8935dffe82ceb40b63d7c6e97017a6dfac064.tar.xz | |
iPod 3G: Implement wheel acceleration and repeats. Chosen settings feel pretty decent but can be tweaked.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26962 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/config/ipod3g.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/firmware/export/config/ipod3g.h b/firmware/export/config/ipod3g.h index 471cb58..ee59a1b 100644 --- a/firmware/export/config/ipod3g.h +++ b/firmware/export/config/ipod3g.h @@ -79,7 +79,14 @@ #define CONFIG_KEYPAD IPOD_3G_PAD +/* define this if the unit uses a scrollwheel for navigation */ #define HAVE_SCROLLWHEEL +/* define to activate advanced wheel acceleration code */ +#define HAVE_WHEEL_ACCELERATION +/* define from which rotation speed [degree/sec] on the acceleration starts */ +#define WHEEL_ACCEL_START 360 +/* define type of acceleration (1 = ^2, 2 = ^3, 3 = ^4) */ +#define WHEEL_ACCELERATION 1 /* Define this to enable morse code input */ #define HAVE_MORSE_INPUT |