diff options
| author | Andrew Ryabinin <ryabinin.a.a@gmail.com> | 2012-03-23 22:32:50 +0400 |
|---|---|---|
| committer | Andrew Ryabinin <ryabinin.a.a@gmail.com> | 2012-04-19 17:31:13 +0400 |
| commit | 397863ab3d45bdd8292512a22cd3b436cf281c76 (patch) | |
| tree | a74a1fd6084875340f978ce67d4dc5ff8716c172 /apps/plugins/fft | |
| parent | 8187d8d5d158bef269048694fd6e65d89263cd42 (diff) | |
| download | rockbox-397863ab3d45bdd8292512a22cd3b436cf281c76.zip rockbox-397863ab3d45bdd8292512a22cd3b436cf281c76.tar.gz rockbox-397863ab3d45bdd8292512a22cd3b436cf281c76.tar.bz2 rockbox-397863ab3d45bdd8292512a22cd3b436cf281c76.tar.xz | |
hm60x: Add support for plugins.
Change-Id: I4cad0881c8249f163680a280f70d1a0b36248da8
Diffstat (limited to 'apps/plugins/fft')
| -rw-r--r-- | apps/plugins/fft/fft.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/plugins/fft/fft.c b/apps/plugins/fft/fft.c index f7d8943..e2f52ec 100644 --- a/apps/plugins/fft/fft.c +++ b/apps/plugins/fft/fft.c @@ -266,6 +266,15 @@ GREY_INFO_STRUCT # define FFT_FREQ_SCALE BUTTON_DOWN # define FFT_QUIT BUTTON_BACK +#elif (CONFIG_KEYPAD == HM60X_PAD) +# define FFT_PREV_GRAPH BUTTON_LEFT +# define FFT_NEXT_GRAPH BUTTON_RIGHT +# define FFT_AMP_SCALE BUTTON_UP +# define FFT_FREQ_SCALE BUTTON_DOWN +# define FFT_ORIENTATION BUTTON_SELECT +# define FFT_WINDOW (BUTTON_POWER|BUTTON_SELECT) +# define FFT_QUIT BUTTON_POWER + #elif !defined(HAVE_TOUCHSCREEN) #error No keymap defined! #endif |