summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2012-01-26 23:59:23 +0100
committerThomas Martitz <kugel@rockbox.org>2012-01-27 09:15:05 +0100
commit7013d0c48da6db654a1d51f23ceae95aa4c2b111 (patch)
tree74fe761e3c85e5337012141d4e3bfbd22b74dd9b /apps
parentfab7264b3b4d6bef1ae3d181693fd37a558df918 (diff)
downloadrockbox-7013d0c48da6db654a1d51f23ceae95aa4c2b111.tar.gz
rockbox-7013d0c48da6db654a1d51f23ceae95aa4c2b111.zip
application: Enable chipper and fft plugins.
They force grid mode but don't need graphics so good enough for now. Change-Id: I711a1a22f1866ed25196614f343ab51967bf3a4b
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/SOURCES.app_build1
-rw-r--r--apps/plugins/SUBDIRS.app_build4
-rw-r--r--apps/plugins/chopper.c2
-rw-r--r--apps/plugins/fft/fft.c2
4 files changed, 7 insertions, 2 deletions
diff --git a/apps/plugins/SOURCES.app_build b/apps/plugins/SOURCES.app_build
index e374062536..8a94e67a37 100644
--- a/apps/plugins/SOURCES.app_build
+++ b/apps/plugins/SOURCES.app_build
@@ -3,6 +3,7 @@
3#include "SOURCES" 3#include "SOURCES"
4#else 4#else
5/* plugins common to all models */ 5/* plugins common to all models */
6chopper.c
6credits.c 7credits.c
7properties.c 8properties.c
8random_folder_advance_config.c 9random_folder_advance_config.c
diff --git a/apps/plugins/SUBDIRS.app_build b/apps/plugins/SUBDIRS.app_build
index 0e0285741f..32fda68425 100644
--- a/apps/plugins/SUBDIRS.app_build
+++ b/apps/plugins/SUBDIRS.app_build
@@ -8,6 +8,10 @@
8 */ 8 */
9#ifdef HAVE_LCD_BITMAP 9#ifdef HAVE_LCD_BITMAP
10 10
11#if CONFIG_CODEC == SWCODEC && PLUGIN_BUFFER_SIZE > 0x20000
12fft
13#endif
14
11#ifdef HAVE_TAGCACHE 15#ifdef HAVE_TAGCACHE
12pictureflow 16pictureflow
13#endif 17#endif
diff --git a/apps/plugins/chopper.c b/apps/plugins/chopper.c
index d819da421b..b2c3653aeb 100644
--- a/apps/plugins/chopper.c
+++ b/apps/plugins/chopper.c
@@ -180,7 +180,7 @@ CONFIG_KEYPAD == MROBE500_PAD
180#define ACTION BUTTON_SELECT 180#define ACTION BUTTON_SELECT
181#define ACTIONTEXT "SELECT" 181#define ACTIONTEXT "SELECT"
182 182
183#else 183#elif !defined(HAVE_TOUCHSCREEN)
184#error No keymap defined! 184#error No keymap defined!
185#endif 185#endif
186 186
diff --git a/apps/plugins/fft/fft.c b/apps/plugins/fft/fft.c
index b2ef8d8e33..1c4e1b4c20 100644
--- a/apps/plugins/fft/fft.c
+++ b/apps/plugins/fft/fft.c
@@ -266,7 +266,7 @@ GREY_INFO_STRUCT
266# define FFT_FREQ_SCALE BUTTON_DOWN 266# define FFT_FREQ_SCALE BUTTON_DOWN
267# define FFT_QUIT BUTTON_BACK 267# define FFT_QUIT BUTTON_BACK
268 268
269#else 269#elif !defined(HAVE_TOUCHSCREEN)
270#error No keymap defined! 270#error No keymap defined!
271#endif 271#endif
272 272