diff options
| author | Amaury Pouly <pamaury@rockbox.org> | 2011-07-23 11:45:22 +0000 |
|---|---|---|
| committer | Amaury Pouly <pamaury@rockbox.org> | 2011-07-23 11:45:22 +0000 |
| commit | eb90d956935019f577311ebc7aec3a7898d76019 (patch) | |
| tree | c4ac810faaf390b9020c46dc2197008679099034 /apps | |
| parent | 06c94740e510d0ce04e069f34631a0539e9e6742 (diff) | |
| download | rockbox-eb90d956935019f577311ebc7aec3a7898d76019.zip rockbox-eb90d956935019f577311ebc7aec3a7898d76019.tar.gz rockbox-eb90d956935019f577311ebc7aec3a7898d76019.tar.bz2 rockbox-eb90d956935019f577311ebc7aec3a7898d76019.tar.xz | |
imx233/fuze+: huge rework
- enable MMU
-rework lcd frame buffer
- add rtc/adc/power stubs (or not)
- fix a few MMC related defines (hopefully)
- implement cache handling for DMA
- more SD work
- add keymap (based on clip)
- add virtual buttons
- update linker scripts
- big step toward apps actually compiling
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30200 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/SOURCES | 2 | ||||
| -rw-r--r-- | apps/misc.c | 2 | ||||
| -rw-r--r-- | apps/screens.c | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/apps/SOURCES b/apps/SOURCES index 075ca9a..79642e1 100644 --- a/apps/SOURCES +++ b/apps/SOURCES @@ -317,4 +317,6 @@ keymaps/keymap-mpio-hd300.c keymaps/keymap-android.c #elif CONFIG_KEYPAD == SDL_PAD keymaps/keymap-sdl.c +#elif CONFIG_KEYPAD == SANSA_FUZEPLUS_PAD +keymaps/keymap-fuzeplus.c #endif diff --git a/apps/misc.c b/apps/misc.c index bba3969..83e42cf 100644 --- a/apps/misc.c +++ b/apps/misc.c @@ -528,7 +528,7 @@ long default_event_handler_ex(long event, void (*callback)(void *), void *parame case SYS_USB_CONNECTED: if (callback != NULL) callback(parameter); -#if (CONFIG_STORAGE & STORAGE_MMC) +#if (CONFIG_STORAGE & STORAGE_MMC) && (defined(ARCHOS_ONDIOSP) || defined(ARCHOS_ONDIOFM)) if (!mmc_touched() || (mmc_remove_request() == SYS_HOTSWAP_EXTRACTED)) #endif diff --git a/apps/screens.c b/apps/screens.c index 6c70477..e20f967 100644 --- a/apps/screens.c +++ b/apps/screens.c @@ -59,7 +59,7 @@ #include "dsp.h" #endif -#if (CONFIG_STORAGE & STORAGE_MMC) +#if (CONFIG_STORAGE & STORAGE_MMC) && (defined(ARCHOS_ONDIOSP) || defined(ARCHOS_ONDIOFM)) int mmc_remove_request(void) { struct queue_event ev; |