summaryrefslogtreecommitdiff
path: root/apps/plugins/oscilloscope.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/oscilloscope.c')
-rw-r--r--apps/plugins/oscilloscope.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/plugins/oscilloscope.c b/apps/plugins/oscilloscope.c
index 69ae8bcfaf..4195d96d5f 100644
--- a/apps/plugins/oscilloscope.c
+++ b/apps/plugins/oscilloscope.c
@@ -287,6 +287,17 @@ PLUGIN_HEADER
287#define OSCILLOSCOPE_VOL_UP BUTTON_UP 287#define OSCILLOSCOPE_VOL_UP BUTTON_UP
288#define OSCILLOSCOPE_VOL_DOWN BUTTON_DOWN 288#define OSCILLOSCOPE_VOL_DOWN BUTTON_DOWN
289 289
290#elif CONFIG_KEYPAD == MPIO_HD200_PAD
291#define OSCILLOSCOPE_QUIT (BUTTON_REC | BUTTON_PLAY)
292#define OSCILLOSCOPE_DRAWMODE BUTTON_SELECT
293#define OSCILLOSCOPE_ADVMODE BUTTON_REC
294#define OSCILLOSCOPE_ORIENTATION (BUTTON_SELECT|BUTTON_REPEAT)
295#define OSCILLOSCOPE_PAUSE BUTTON_PLAY
296#define OSCILLOSCOPE_SPEED_UP BUTTON_NEXT
297#define OSCILLOSCOPE_SPEED_DOWN BUTTON_PREV
298#define OSCILLOSCOPE_VOL_UP BUTTON_VOL_UP
299#define OSCILLOSCOPE_VOL_DOWN BUTTON_VOL_DOWN
300
290#else 301#else
291#error No keymap defined! 302#error No keymap defined!
292#endif 303#endif