summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-08-03 20:21:29 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-08-03 20:21:29 +0000
commit4d75350e75e14f93ee378da701170ee29a26aba9 (patch)
tree23166dfd8fec6f7c0223c0cac66bf60253000bed /firmware
parent86bff1cf56d144910f3e2bd84a37ec99c8dca512 (diff)
downloadrockbox-4d75350e75e14f93ee378da701170ee29a26aba9.tar.gz
rockbox-4d75350e75e14f93ee378da701170ee29a26aba9.zip
Barry Wardell's H10 adjustments
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10448 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/export/config-h10.h2
-rw-r--r--firmware/export/config.h4
2 files changed, 5 insertions, 1 deletions
diff --git a/firmware/export/config-h10.h b/firmware/export/config-h10.h
index 470ff6b4fa..5a410f6b42 100644
--- a/firmware/export/config-h10.h
+++ b/firmware/export/config-h10.h
@@ -2,6 +2,8 @@
2 * This config file is for the iriver H10 2 * This config file is for the iriver H10
3 */ 3 */
4 4
5#define TARGET_TREE /* this target is using the target tree system */
6
5/* For Rolo and boot loader */ 7/* For Rolo and boot loader */
6#define MODEL_NUMBER 11 8#define MODEL_NUMBER 11
7 9
diff --git a/firmware/export/config.h b/firmware/export/config.h
index 408e9a28a7..3bd3ee6fdc 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -114,6 +114,7 @@
114#define BL_IRIVER_IFP7XX 9 /* IRiver GPIO */ 114#define BL_IRIVER_IFP7XX 9 /* IRiver GPIO */
115#define BL_IPODMINI 10 /* Apple iPod Mini */ 115#define BL_IPODMINI 10 /* Apple iPod Mini */
116#define BL_GIGABEAT 11 /* Toshiba Gigabeat */ 116#define BL_GIGABEAT 11 /* Toshiba Gigabeat */
117#define BL_IRIVER_H10 12 /* iriver H10 */
117 118
118/* CONFIG_I2C */ 119/* CONFIG_I2C */
119#define I2C_PLAYREC 0 /* Archos Player/Recorder style */ 120#define I2C_PLAYREC 0 /* Archos Player/Recorder style */
@@ -138,6 +139,7 @@
138#define RTC_PCF50605 2 /* iPod 3G, 4G & Mini */ 139#define RTC_PCF50605 2 /* iPod 3G, 4G & Mini */
139#define RTC_PCF50606 3 /* iriver H300 */ 140#define RTC_PCF50606 3 /* iriver H300 */
140#define RTC_S3C2440 4 141#define RTC_S3C2440 4
142#define RTC_E8564 5 /* iriver H10 */
141 143
142/* USB On-the-go */ 144/* USB On-the-go */
143#define USBOTG_ISP1362 1362 145#define USBOTG_ISP1362 1362
@@ -241,7 +243,7 @@
241#if !defined(SIMULATOR) && /* Not for simulators */ \ 243#if !defined(SIMULATOR) && /* Not for simulators */ \
242 (((CONFIG_CPU == SH7034) && !defined(PLUGIN)) || /* SH1 archos: core only */ \ 244 (((CONFIG_CPU == SH7034) && !defined(PLUGIN)) || /* SH1 archos: core only */ \
243 defined(CPU_COLDFIRE) || /* Coldfire: core, plugins, codecs */ \ 245 defined(CPU_COLDFIRE) || /* Coldfire: core, plugins, codecs */ \
244 (CONFIG_CPU == PP5020) || /* iPod: core, plugins, codecs */ \ 246 (CONFIG_CPU == PP5020) || /* iPod and H10: core, plugins, codecs */ \
245 (CONFIG_CPU == PP5002) || /* iPod: core, plugins, codecs */ \ 247 (CONFIG_CPU == PP5002) || /* iPod: core, plugins, codecs */ \
246 (CONFIG_CPU == TCC730)) /* CalmRISC16: core, (plugins, codecs) */ 248 (CONFIG_CPU == TCC730)) /* CalmRISC16: core, (plugins, codecs) */
247#define ICODE_ATTR __attribute__ ((section(".icode"))) 249#define ICODE_ATTR __attribute__ ((section(".icode")))