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.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/plugins/oscilloscope.c b/apps/plugins/oscilloscope.c
index 13a8c4e1a6..6b816aebe7 100644
--- a/apps/plugins/oscilloscope.c
+++ b/apps/plugins/oscilloscope.c
@@ -168,6 +168,19 @@ PLUGIN_HEADER
168#define OSCILLOSCOPE_VOL_UP BUTTON_UP 168#define OSCILLOSCOPE_VOL_UP BUTTON_UP
169#define OSCILLOSCOPE_VOL_DOWN BUTTON_DOWN 169#define OSCILLOSCOPE_VOL_DOWN BUTTON_DOWN
170 170
171#elif CONFIG_KEYPAD == IAUDIO_M3_PAD
172#define OSCILLOSCOPE_QUIT BUTTON_RC_REC
173#define OSCILLOSCOPE_DRAWMODE_PRE BUTTON_RC_MODE
174#define OSCILLOSCOPE_DRAWMODE (BUTTON_RC_MODE|BUTTON_REL)
175#define OSCILLOSCOPE_ADVMODE BUTTON_RC_MENU
176#define OSCILLOSCOPE_ORIENTATION_PRE BUTTON_RC_MODE
177#define OSCILLOSCOPE_ORIENTATION (BUTTON_RC_MODE|BUTTON_REPEAT)
178#define OSCILLOSCOPE_PAUSE BUTTON_RC_PLAY
179#define OSCILLOSCOPE_SPEED_UP BUTTON_RC_FF
180#define OSCILLOSCOPE_SPEED_DOWN BUTTON_RC_REW
181#define OSCILLOSCOPE_VOL_UP BUTTON_RC_VOL_UP
182#define OSCILLOSCOPE_VOL_DOWN BUTTON_RC_VOL_DOWN
183
171#else 184#else
172#error No keymap defined! 185#error No keymap defined!
173#endif 186#endif