summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorMarc Guay <marcguay@rockbox.org>2008-06-21 15:18:36 +0000
committerMarc Guay <marcguay@rockbox.org>2008-06-21 15:18:36 +0000
commitb93667b30699a18daf3699cc969ad858077e406f (patch)
treeb3a1932ff6227f0434e86efded2205a16864898b /firmware/export
parentfdd5c3f1a3c18806329a88b8f243c8775f2a8571 (diff)
Add the Sansa c100 as a build target with basic drivers.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17742 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/config-m200.h2
-rw-r--r--firmware/export/config.h7
2 files changed, 7 insertions, 2 deletions
diff --git a/firmware/export/config-m200.h b/firmware/export/config-m200.h
index 760474d628..e3cb42e403 100644
--- a/firmware/export/config-m200.h
+++ b/firmware/export/config-m200.h
@@ -4,7 +4,7 @@
#define TARGET_TREE /* this target is using the target tree system */
/* For Rolo and boot loader */
-#define MODEL_NUMBER 28
+#define MODEL_NUMBER 29
/* define this if you have recording possibility */
//#define HAVE_RECORDING
diff --git a/firmware/export/config.h b/firmware/export/config.h
index c7e204c5df..c0e2b43d97 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -51,6 +51,7 @@
#define DSC25 25
#define DM320 320
#define IMX31L 31
+#define TCC770 770
#define TCC771L 771
#define TCC773L 773
#define TCC7801 7801
@@ -83,6 +84,7 @@
#define SANSA_M200_PAD 25
#define CREATIVEZV_PAD 26
#define PHILIPS_SA9200_PAD 27
+#define SANSA_C100_PAD 28
/* CONFIG_REMOTE_KEYPAD */
#define H100_REMOTE 1
@@ -122,6 +124,7 @@
#define LCD_TL0350A 23 /* as used by the iAudio M3 remote, treated as main LCD */
#define LCD_COWOND2 24 /* as used by Cowon D2 - LTV250QV, TCC7801 driver */
#define LCD_SA9200 25 /* as used by the Philips SA9200 */
+#define LCD_S6B33B2 26 /* as used by the Sansa c100 */
/* LCD_PIXELFORMAT */
#define HORIZONTAL_PACKING 1
@@ -262,6 +265,8 @@
#include "config-creativezv.h"
#elif defined(PHILIPS_SA9200)
#include "config-sa9200.h"
+#elif defined(SANSA_C100)
+#include "config-c100.h"
#else
/* no known platform */
#endif
@@ -391,7 +396,7 @@
#endif
/* define for all cpus from TCC77X family */
-#if (CONFIG_CPU == TCC771L) || (CONFIG_CPU == TCC773L)
+#if (CONFIG_CPU == TCC771L) || (CONFIG_CPU == TCC773L) || (CONFIG_CPU == TCC770)
#define CPU_TCC77X
#endif