summaryrefslogtreecommitdiff
path: root/firmware/export/config-h100.h
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2004-09-16 14:36:08 +0000
committerBjörn Stenberg <bjorn@haxx.se>2004-09-16 14:36:08 +0000
commit8b6950493bb281e8aac996219d33188c482b1d67 (patch)
tree3b907795bc72dd61934c5ea6f4f790e047e3f83c /firmware/export/config-h100.h
parent82e9438e2e87887c0c917fddf2fa4971261ff83d (diff)
downloadrockbox-8b6950493bb281e8aac996219d33188c482b1d67.tar.gz
rockbox-8b6950493bb281e8aac996219d33188c482b1d67.zip
Moved LCD_WIDHT/HEIGHT from lcd driver to config file.
Simulators now use conig-xxx.h. Added Iriver H100 to tools/configure. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5081 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/config-h100.h')
-rw-r--r--firmware/export/config-h100.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/firmware/export/config-h100.h b/firmware/export/config-h100.h
new file mode 100644
index 0000000000..2efe4834a7
--- /dev/null
+++ b/firmware/export/config-h100.h
@@ -0,0 +1,28 @@
1/* define this if you have recording possibility */
2#define HAVE_RECORDING 1
3
4/* define this if you have a bitmap LCD display */
5#define HAVE_LCD_BITMAP 1
6
7/* LCD dimensions */
8#define LCD_WIDTH 160
9#define LCD_HEIGHT 128
10
11/* define this if you have the Recorder's 10-key keyboard */
12#define HAVE_RECORDER_KEYPAD 1
13
14#ifndef SIMULATOR
15
16/* Define this if the platform has batteries */
17#define HAVE_BATTERIES 1
18
19/* The start address index for ROM builds */
20#define ROM_START 0x11010
21
22/* Define this for programmable LED available */
23#define HAVE_LED
24
25/* Define this for LCD backlight available */
26#define HAVE_BACKLIGHT
27
28#endif