diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2007-11-19 11:05:54 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2007-11-19 11:05:54 +0000 |
| commit | e75327b33249cb2656281af2bd5368fe0edd2d48 (patch) | |
| tree | 80037d0f7a7420886b678a195ce2bbb90deba951 /firmware/export/config-e200.h | |
| parent | a8c020288c729f077b067f45f92a47bca56caae1 (diff) | |
| download | rockbox-e75327b33249cb2656281af2bd5368fe0edd2d48.zip rockbox-e75327b33249cb2656281af2bd5368fe0edd2d48.tar.gz rockbox-e75327b33249cb2656281af2bd5368fe0edd2d48.tar.bz2 rockbox-e75327b33249cb2656281af2bd5368fe0edd2d48.tar.xz | |
FS#7738 - Scroll wheel acceleration for iPod
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15681 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/config-e200.h')
| -rw-r--r-- | firmware/export/config-e200.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/firmware/export/config-e200.h b/firmware/export/config-e200.h index e2274bc..f5ba8f0 100644 --- a/firmware/export/config-e200.h +++ b/firmware/export/config-e200.h @@ -100,9 +100,10 @@ /* define this if the unit uses a scrollwheel for navigation */ #define HAVE_SCROLLWHEEL -/* define wheel acceleration scaling factor */ -/* Range for this target: 0xffffff*(0.0-16.000000894069724921567733381255) */ -#define WHEEL_ACCELERATION_FACTOR (0xffffff*7) +/* define from which rotation speed [degree/sec] on the acceleration starts */ +#define WHEEL_ACCEL_START 540 +/* define type of acceleration (1 = ^2, 2 = ^3, 3 = ^4) */ +#define WHEEL_ACCELERATION 1 /* define this if you have a flash memory storage */ #define HAVE_FLASH_STORAGE |