summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-01-10 22:03:05 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-01-10 22:03:05 +0000
commited69c36cdf557e2d0bd81c9ec599a903e511995f (patch)
tree2f750d579da69863c257e4169dca16a8cbbad37f
parentb42509b14f9fb7f9640cc078e7cd1b6e71872c22 (diff)
downloadrockbox-ed69c36cdf557e2d0bd81c9ec599a903e511995f.tar.gz
rockbox-ed69c36cdf557e2d0bd81c9ec599a903e511995f.zip
Now define the exact LCD controller in use.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5557 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/export/config-fmrecorder.h2
-rw-r--r--firmware/export/config-h100.h2
-rw-r--r--firmware/export/config-ondiofm.h2
-rw-r--r--firmware/export/config-ondiosp.h2
-rw-r--r--firmware/export/config-player.h2
-rw-r--r--firmware/export/config-recorder.h2
-rw-r--r--firmware/export/config-recorderv2.h2
-rw-r--r--firmware/export/config.h2
8 files changed, 16 insertions, 0 deletions
diff --git a/firmware/export/config-fmrecorder.h b/firmware/export/config-fmrecorder.h
index c20c36ea43..f5e82bbd12 100644
--- a/firmware/export/config-fmrecorder.h
+++ b/firmware/export/config-fmrecorder.h
@@ -76,4 +76,6 @@
/* Define this if you have a software controlled poweroff */
#define HAVE_SW_POWEROFF
+#define CONFIG_LCD LCD_SSD1815
+
#endif /* SIMULATOR */
diff --git a/firmware/export/config-h100.h b/firmware/export/config-h100.h
index a63a60ec57..ae468a2626 100644
--- a/firmware/export/config-h100.h
+++ b/firmware/export/config-h100.h
@@ -33,4 +33,6 @@
/* Define this if you have ATA power-off control */
#define HAVE_ATA_POWER_OFF
+#define CONFIG_LCD LCD_S1D15E06
+
#endif
diff --git a/firmware/export/config-ondiofm.h b/firmware/export/config-ondiofm.h
index c7bdf2ae88..9a3993c53f 100644
--- a/firmware/export/config-ondiofm.h
+++ b/firmware/export/config-ondiofm.h
@@ -79,4 +79,6 @@
/* define this if more than one device/partition can be used */
#define HAVE_MULTIVOLUME
+#define CONFIG_LCD LCD_SSD1815
+
#endif /* SIMULATOR */
diff --git a/firmware/export/config-ondiosp.h b/firmware/export/config-ondiosp.h
index 6b6251a627..89a17420c5 100644
--- a/firmware/export/config-ondiosp.h
+++ b/firmware/export/config-ondiosp.h
@@ -70,4 +70,6 @@
/* define this if more than one device/partition can be used */
#define HAVE_MULTIVOLUME
+#define CONFIG_LCD LCD_SSD1815
+
#endif /* SIMULATOR */
diff --git a/firmware/export/config-player.h b/firmware/export/config-player.h
index 6ef61234ad..6ca5663563 100644
--- a/firmware/export/config-player.h
+++ b/firmware/export/config-player.h
@@ -66,4 +66,6 @@
/* Define this for LCD backlight available */
#define CONFIG_BACKLIGHT BL_PA14_LO /* port PA14, low active */
+#define CONFIG_LCD LCD_SSD1801
+
#endif /* SIMULATOR */
diff --git a/firmware/export/config-recorder.h b/firmware/export/config-recorder.h
index 79fd116d4f..4d29b66fa0 100644
--- a/firmware/export/config-recorder.h
+++ b/firmware/export/config-recorder.h
@@ -70,4 +70,6 @@
/* Define this for S/PDIF output available */
#define HAVE_SPDIF_OUT
+#define CONFIG_LCD LCD_SSD1815
+
#endif /* SIMULATOR */
diff --git a/firmware/export/config-recorderv2.h b/firmware/export/config-recorderv2.h
index 028a27095c..941946ace0 100644
--- a/firmware/export/config-recorderv2.h
+++ b/firmware/export/config-recorderv2.h
@@ -76,4 +76,6 @@
/* Define this if you have a software controlled poweroff */
#define HAVE_SW_POWEROFF
+#define CONFIG_LCD LCD_SSD1815
+
#endif /* SIMULATOR */
diff --git a/firmware/export/config.h b/firmware/export/config.h
index 75a1b3ff67..c6431298ef 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -51,6 +51,8 @@
/* CONFIG_LCD */
#define LCD_GMINI100 0
#define LCD_SSD1815 1 /* as used by Archos Recorders and Ondios */
+#define LCD_SSD1801 2 /* as used by Archos Player/Studio */
+#define LCD_S1D15E06 3 /* as used by iRiver H100 series */
/* CONFIG_BACKLIGHT */
#define BL_PA14_LO 0 /* Player, PA14 low active */