diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-07-04 06:25:31 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-07-04 06:25:31 +0000 |
| commit | 1d5f07b0a654ca0ee0b6f4785388801ed809af33 (patch) | |
| tree | f009675c11bd1488f2b7a66c7c77b501dadef52b | |
| parent | f89f011508c80985b4dfee4fcc296689c149b30f (diff) | |
| download | rockbox-1d5f07b0a654ca0ee0b6f4785388801ed809af33.zip rockbox-1d5f07b0a654ca0ee0b6f4785388801ed809af33.tar.gz rockbox-1d5f07b0a654ca0ee0b6f4785388801ed809af33.tar.bz2 rockbox-1d5f07b0a654ca0ee0b6f4785388801ed809af33.tar.xz | |
Preparation for 4-grey LCD mode on H1x0.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7008 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/config-fmrecorder.h | 1 | ||||
| -rw-r--r-- | firmware/export/config-gmini120.h | 1 | ||||
| -rw-r--r-- | firmware/export/config-gminisp.h | 1 | ||||
| -rw-r--r-- | firmware/export/config-h100.h | 2 | ||||
| -rw-r--r-- | firmware/export/config-h300.h | 2 | ||||
| -rw-r--r-- | firmware/export/config-ondiofm.h | 1 | ||||
| -rw-r--r-- | firmware/export/config-ondiosp.h | 1 | ||||
| -rw-r--r-- | firmware/export/config-recorder.h | 1 | ||||
| -rw-r--r-- | firmware/export/config-recorderv2.h | 1 |
9 files changed, 11 insertions, 0 deletions
diff --git a/firmware/export/config-fmrecorder.h b/firmware/export/config-fmrecorder.h index d566ffd..b54d963 100644 --- a/firmware/export/config-fmrecorder.h +++ b/firmware/export/config-fmrecorder.h @@ -7,6 +7,7 @@ /* LCD dimensions */ #define LCD_WIDTH 112 #define LCD_HEIGHT 64 +#define LCD_DEPTH 1 /* define this if you have a Recorder style 10-key keyboard */ #define CONFIG_KEYPAD RECORDER_PAD diff --git a/firmware/export/config-gmini120.h b/firmware/export/config-gmini120.h index fa7e98e..1801946 100644 --- a/firmware/export/config-gmini120.h +++ b/firmware/export/config-gmini120.h @@ -13,6 +13,7 @@ /* LCD dimensions */ #define LCD_WIDTH 128 #define LCD_HEIGHT 64 +#define LCD_DEPTH 1 #define CONFIG_KEYPAD GMINI100_PAD diff --git a/firmware/export/config-gminisp.h b/firmware/export/config-gminisp.h index 2bf97d5..2881471 100644 --- a/firmware/export/config-gminisp.h +++ b/firmware/export/config-gminisp.h @@ -7,6 +7,7 @@ /* LCD dimensions */ #define LCD_WIDTH 128 #define LCD_HEIGHT 64 +#define LCD_DEPTH 1 #define CONFIG_KEYPAD GMINI100_PAD diff --git a/firmware/export/config-h100.h b/firmware/export/config-h100.h index c61c528..7971a2e 100644 --- a/firmware/export/config-h100.h +++ b/firmware/export/config-h100.h @@ -7,10 +7,12 @@ /* LCD dimensions */ #define LCD_WIDTH 160 #define LCD_HEIGHT 128 +#define LCD_DEPTH 2 /* remote LCD */ #define LCD_REMOTE_WIDTH 128 #define LCD_REMOTE_HEIGHT 64 +#define LCD_REMOTE_DEPTH 1 #define CONFIG_KEYPAD IRIVER_H100_PAD diff --git a/firmware/export/config-h300.h b/firmware/export/config-h300.h index f6e1e69..f461b26 100644 --- a/firmware/export/config-h300.h +++ b/firmware/export/config-h300.h @@ -7,10 +7,12 @@ /* LCD dimensions */ #define LCD_WIDTH 220 #define LCD_HEIGHT 176 +#define LCD_DEPTH 18 /* remote LCD */ #define LCD_REMOTE_WIDTH 128 #define LCD_REMOTE_HEIGHT 64 +#define LCD_REMOTE_DEPTH 1 #define CONFIG_KEYPAD IRIVER_H300_PAD diff --git a/firmware/export/config-ondiofm.h b/firmware/export/config-ondiofm.h index 48f1d86..118ced2 100644 --- a/firmware/export/config-ondiofm.h +++ b/firmware/export/config-ondiofm.h @@ -7,6 +7,7 @@ /* LCD dimensions */ #define LCD_WIDTH 112 #define LCD_HEIGHT 64 +#define LCD_DEPTH 1 /* define this if you have an Ondio style 6-key keyboard */ #define CONFIG_KEYPAD ONDIO_PAD diff --git a/firmware/export/config-ondiosp.h b/firmware/export/config-ondiosp.h index 3030c28..7ccda32 100644 --- a/firmware/export/config-ondiosp.h +++ b/firmware/export/config-ondiosp.h @@ -4,6 +4,7 @@ /* LCD dimensions */ #define LCD_WIDTH 112 #define LCD_HEIGHT 64 +#define LCD_DEPTH 1 /* define this if you have an Ondio style 6-key keyboard */ #define CONFIG_KEYPAD ONDIO_PAD diff --git a/firmware/export/config-recorder.h b/firmware/export/config-recorder.h index 4cc378f..bab6cd1 100644 --- a/firmware/export/config-recorder.h +++ b/firmware/export/config-recorder.h @@ -7,6 +7,7 @@ /* LCD dimensions */ #define LCD_WIDTH 112 #define LCD_HEIGHT 64 +#define LCD_DEPTH 1 /* define this if you have the Recorder's 10-key keyboard */ #define CONFIG_KEYPAD RECORDER_PAD diff --git a/firmware/export/config-recorderv2.h b/firmware/export/config-recorderv2.h index a9c8afc..058495e 100644 --- a/firmware/export/config-recorderv2.h +++ b/firmware/export/config-recorderv2.h @@ -7,6 +7,7 @@ /* LCD dimensions */ #define LCD_WIDTH 112 #define LCD_HEIGHT 64 +#define LCD_DEPTH 1 /* define this if you have a Recorder style 10-key keyboard */ #define CONFIG_KEYPAD RECORDER_PAD |