summaryrefslogtreecommitdiff
path: root/firmware/export/config.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-08-01 22:28:14 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-08-01 22:28:14 +0000
commit0fc30d117412f2cbd8e00a043e0c901345125d31 (patch)
tree1cba88b9ed482cef7ca2bba3a2fc059a40221d43 /firmware/export/config.h
parent97cf946e4df08852b7ce17ecb7fe8425df67dc3f (diff)
downloadrockbox-0fc30d117412f2cbd8e00a043e0c901345125d31.tar.gz
rockbox-0fc30d117412f2cbd8e00a043e0c901345125d31.zip
added mostly dummy changes to allow building of a Sansa e200 bootloader
without functionality git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10399 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/config.h')
-rw-r--r--firmware/export/config.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index 684353e499..9b3945640e 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -56,6 +56,8 @@
56#define IPOD_3G_PAD 8 56#define IPOD_3G_PAD 8
57#define IRIVER_IFP7XX_PAD 9 57#define IRIVER_IFP7XX_PAD 9
58#define GIGABEAT_PAD 10 58#define GIGABEAT_PAD 10
59#define IRIVER_H10_PAD 11
60#define SANSA_E200_PAD 12
59 61
60/* CONFIG_REMOTE_KEYPAD */ 62/* CONFIG_REMOTE_KEYPAD */
61#define H100_REMOTE 1 63#define H100_REMOTE 1
@@ -67,6 +69,7 @@
67#define BATT_4AA_NIMH 1500 69#define BATT_4AA_NIMH 1500
68#define BATT_3AAA 1000 /* Ondio */ 70#define BATT_3AAA 1000 /* Ondio */
69#define BATT_LIPOL1300 1300 /* the type used in iRiver h1x0 models */ 71#define BATT_LIPOL1300 1300 /* the type used in iRiver h1x0 models */
72#define BATT_LPCS355385 1550 /* iriver h10 - SKC LPCS355385 */
70 73
71/* CONFIG_CHARGING */ 74/* CONFIG_CHARGING */
72#define CHARGING_SIMPLE 1 /* Simple, hardware controlled charging */ 75#define CHARGING_SIMPLE 1 /* Simple, hardware controlled charging */
@@ -182,6 +185,10 @@
182#include "config-ipodmini.h" 185#include "config-ipodmini.h"
183#elif defined(IPOD_MINI2G) 186#elif defined(IPOD_MINI2G)
184#include "config-ipodmini2g.h" 187#include "config-ipodmini2g.h"
188#elif defined(IRIVER_H10)
189#include "config-h10.h"
190#elif defined(SANSA_E200)
191#include "config-e200.h"
185#else 192#else
186/* no known platform */ 193/* no known platform */
187#endif 194#endif
@@ -203,7 +210,7 @@
203#endif 210#endif
204 211
205/* define for all cpus from ARM family */ 212/* define for all cpus from ARM family */
206#if (CONFIG_CPU == PP5002) || (CONFIG_CPU == PP5020) || (CONFIG_CPU == PNX0101) || (CONFIG_CPU == S3C2440) 213#if (CONFIG_CPU == PP5002) || (CONFIG_CPU == PP5020) || (CONFIG_CPU == PNX0101) || (CONFIG_CPU == S3C2440) || (CONFIG_CPU == PP5024)
207#define CPU_ARM 214#define CPU_ARM
208#endif 215#endif
209 216