diff options
| author | Tomasz Moń <desowin@gmail.com> | 2011-11-16 14:08:01 +0000 |
|---|---|---|
| committer | Tomasz Moń <desowin@gmail.com> | 2011-11-16 14:08:01 +0000 |
| commit | e8a8a1be43afe63079ae48ce1a9eb3052df3b1a4 (patch) | |
| tree | 084e1cdf27a339ce58e24cff8fec8c31432b52db /apps/plugins/oscilloscope.c | |
| parent | 992d4eb775cac48e107e18d72783ebfb39c4234f (diff) | |
| download | rockbox-e8a8a1be43afe63079ae48ce1a9eb3052df3b1a4.zip rockbox-e8a8a1be43afe63079ae48ce1a9eb3052df3b1a4.tar.gz rockbox-e8a8a1be43afe63079ae48ce1a9eb3052df3b1a4.tar.bz2 rockbox-e8a8a1be43afe63079ae48ce1a9eb3052df3b1a4.tar.xz | |
Sandisk Sansa Connect port (FS #12363)
Included are drivers for buttons, backlight, lcd, audio and storage.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31000 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/oscilloscope.c')
| -rw-r--r-- | apps/plugins/oscilloscope.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/plugins/oscilloscope.c b/apps/plugins/oscilloscope.c index 52cef65..4469a92 100644 --- a/apps/plugins/oscilloscope.c +++ b/apps/plugins/oscilloscope.c @@ -331,6 +331,17 @@ #define OSCILLOSCOPE_VOL_UP BUTTON_VOL_UP #define OSCILLOSCOPE_VOL_DOWN BUTTON_VOL_DOWN +#elif (CONFIG_KEYPAD == SANSA_CONNECT_PAD) +#define OSCILLOSCOPE_QUIT BUTTON_POWER +#define OSCILLOSCOPE_DRAWMODE BUTTON_SELECT +#define OSCILLOSCOPE_ADVMODE BUTTON_DOWN +#define OSCILLOSCOPE_ORIENTATION BUTTON_UP +#define OSCILLOSCOPE_PAUSE BUTTON_NEXT +#define OSCILLOSCOPE_SPEED_UP BUTTON_RIGHT +#define OSCILLOSCOPE_SPEED_DOWN BUTTON_LEFT +#define OSCILLOSCOPE_VOL_UP BUTTON_VOL_UP +#define OSCILLOSCOPE_VOL_DOWN BUTTON_VOL_DOWN + #else #error No keymap defined! #endif |