diff options
Diffstat (limited to 'firmware/export/config.h')
-rw-r--r-- | firmware/export/config.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h index a18bf14a97..4a4185fdc3 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h | |||
@@ -48,6 +48,7 @@ | |||
48 | #define PNX0101 101 | 48 | #define PNX0101 101 |
49 | #define S3C2440 2440 | 49 | #define S3C2440 2440 |
50 | #define TMS320DSC25 25 | 50 | #define TMS320DSC25 25 |
51 | #define DM320 320 | ||
51 | 52 | ||
52 | /* CONFIG_KEYPAD */ | 53 | /* CONFIG_KEYPAD */ |
53 | #define PLAYER_PAD 1 | 54 | #define PLAYER_PAD 1 |
@@ -66,6 +67,7 @@ | |||
66 | #define SANSA_C200_PAD 14 | 67 | #define SANSA_C200_PAD 14 |
67 | #define ELIO_TPJ1022_PAD 15 | 68 | #define ELIO_TPJ1022_PAD 15 |
68 | #define ARCHOS_AV300_PAD 16 | 69 | #define ARCHOS_AV300_PAD 16 |
70 | #define MROBE500_PAD 17 | ||
69 | 71 | ||
70 | /* CONFIG_REMOTE_KEYPAD */ | 72 | /* CONFIG_REMOTE_KEYPAD */ |
71 | #define H100_REMOTE 1 | 73 | #define H100_REMOTE 1 |
@@ -97,6 +99,7 @@ | |||
97 | #define LCD_TPJ1022 15 /* as used by Tatung Elio TPJ-1022 */ | 99 | #define LCD_TPJ1022 15 /* as used by Tatung Elio TPJ-1022 */ |
98 | #define LCD_DSC25 16 /* as used by Archos AV300 */ | 100 | #define LCD_DSC25 16 /* as used by Archos AV300 */ |
99 | #define LCD_C200 17 /* as used by Sandisk Sansa c200 */ | 101 | #define LCD_C200 17 /* as used by Sandisk Sansa c200 */ |
102 | #define LCD_MROBE500 18 /* as used by Olympus M:Robe 500i */ | ||
100 | 103 | ||
101 | /* LCD_PIXELFORMAT */ | 104 | /* LCD_PIXELFORMAT */ |
102 | #define HORIZONTAL_PACKING 1 | 105 | #define HORIZONTAL_PACKING 1 |
@@ -197,6 +200,8 @@ | |||
197 | #include "config-c200.h" | 200 | #include "config-c200.h" |
198 | #elif defined(ELIO_TPJ1022) | 201 | #elif defined(ELIO_TPJ1022) |
199 | #include "config-tpj1022.h" | 202 | #include "config-tpj1022.h" |
203 | #elif defined(MROBE_500) | ||
204 | #include "config-mrobe500.h" | ||
200 | #else | 205 | #else |
201 | /* no known platform */ | 206 | /* no known platform */ |
202 | #endif | 207 | #endif |
@@ -294,7 +299,7 @@ | |||
294 | 299 | ||
295 | /* define for all cpus from ARM family */ | 300 | /* define for all cpus from ARM family */ |
296 | #if defined(CPU_PP) || (CONFIG_CPU == PNX0101) || (CONFIG_CPU == S3C2440) \ | 301 | #if defined(CPU_PP) || (CONFIG_CPU == PNX0101) || (CONFIG_CPU == S3C2440) \ |
297 | || (CONFIG_CPU == TMS320DSC25) | 302 | || (CONFIG_CPU == TMS320DSC25) || (CONFIG_CPU == DM320) |
298 | #define CPU_ARM | 303 | #define CPU_ARM |
299 | #endif | 304 | #endif |
300 | 305 | ||