summaryrefslogtreecommitdiff
path: root/firmware/export/lcd.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/lcd.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/lcd.h')
-rw-r--r--firmware/export/lcd.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index 7dda83d8da..21d1f4cc55 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -105,11 +105,6 @@ void lcd_remove_cursor(void);
105 105
106#if defined(HAVE_LCD_BITMAP) || defined(SIMULATOR) 106#if defined(HAVE_LCD_BITMAP) || defined(SIMULATOR)
107#if defined(HAVE_LCD_CHARCELLS) && defined(SIMULATOR) 107#if defined(HAVE_LCD_CHARCELLS) && defined(SIMULATOR)
108#define LCD_WIDTH (4*11*6) /* Display width in pixels */
109#define LCD_HEIGHT (4*16+2*24) /* 4*char + 2*icons */
110#else
111#define LCD_WIDTH 112 /* Display width in pixels */
112#define LCD_HEIGHT 64 /* Display height in pixels */
113#endif 108#endif
114 109
115#define DRAW_PIXEL(x,y) lcd_framebuffer[(y)/8][(x)] |= (1<<((y)&7)) 110#define DRAW_PIXEL(x,y) lcd_framebuffer[(y)/8][(x)] |= (1<<((y)&7))