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 /firmware/export/config | |
| 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 'firmware/export/config')
| -rw-r--r-- | firmware/export/config/sansafuzeplus.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/firmware/export/config/sansafuzeplus.h b/firmware/export/config/sansafuzeplus.h index 4c3cd60..971ff01 100644 --- a/firmware/export/config/sansafuzeplus.h +++ b/firmware/export/config/sansafuzeplus.h @@ -28,7 +28,7 @@ /* define this if you have a colour LCD */ #define HAVE_LCD_COLOR -#ifndef BOOTLOADER/* define this if you want album art for this target */ +#ifndef BOOTLOADER #define HAVE_ALBUMART /* define this to enable bitmap scaling */ @@ -37,9 +37,6 @@ /* define this to enable JPEG decoding */ #define HAVE_JPEG -/* define this if you have a light associated with the buttons */ -#define HAVE_BUTTON_LIGHT - /* define this if you have access to the quickscreen */ #define HAVE_QUICKSCREEN @@ -69,13 +66,19 @@ /* define this if you have a real-time clock */ #define CONFIG_RTC RTC_IMX233 +/* define this if you have a real-time clock with alarm facilities */ +#define HAVE_RTC_ALARM + +#endif /* !BOOTLOADER */ + +/* define this if you have an i.MX23 codec */ +#define HAVE_IMX233_CODEC + #define CONFIG_TUNER SI4700 /* There is no hardware tone control */ #define HAVE_SW_TONE_CONTROLS -#endif /* !BOOTLOADER */ - #define CONFIG_KEYPAD SANSA_FUZEPLUS_PAD /* Define this to enable morse code input */ @@ -84,7 +87,6 @@ /* Define this if you do software codec */ #define CONFIG_CODEC SWCODEC - /* LCD dimensions */ #define LCD_WIDTH 240 #define LCD_HEIGHT 320 |