summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-07-08 13:02:52 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-07-08 13:02:52 +0000
commit1bbd58e2d8e4bf9c9942c5b70ff4e480a6fc56f2 (patch)
tree3dd2b077a3df6468b6226623db692c14fc27d0f9 /firmware/export
parent32eddb44be92d8d14ad757e87de652fd67b59c89 (diff)
downloadrockbox-1bbd58e2d8e4bf9c9942c5b70ff4e480a6fc56f2.tar.gz
rockbox-1bbd58e2d8e4bf9c9942c5b70ff4e480a6fc56f2.zip
e200 lcd mashup: 1) Enable flipped and inverted mode. 2) Fully enable all power options so that LCD driver IC's visible display is shut down with backlight and make the Sleep option available 3) Better framebuffer copy routine in assembly that confines updates to the specified rectangle _and_ is faster than memcpy 4) Some other offhand changes out of preference.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13818 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/config-e200.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/firmware/export/config-e200.h b/firmware/export/config-e200.h
index f9708697dc..6edab71fbf 100644
--- a/firmware/export/config-e200.h
+++ b/firmware/export/config-e200.h
@@ -33,11 +33,21 @@
33/* define this if you have LCD enable function */ 33/* define this if you have LCD enable function */
34#define HAVE_LCD_ENABLE 34#define HAVE_LCD_ENABLE
35 35
36/* Define this if your LCD can be put to sleep. HAVE_LCD_ENABLE
37 should be defined as well. */
38#define HAVE_LCD_SLEEP
39
36#ifndef SIMULATOR 40#ifndef SIMULATOR
37#define HAVE_HOTSWAP 41#define HAVE_HOTSWAP
38#define HAVE_MULTIVOLUME 42#define HAVE_MULTIVOLUME
39#endif 43#endif
40 44
45/* define this if you can invert the colours on your LCD */
46#define HAVE_LCD_INVERT
47
48/* define this if you can flip your LCD */
49#define HAVE_LCD_FLIP
50
41#define HAVE_BACKLIGHT_BRIGHTNESS 51#define HAVE_BACKLIGHT_BRIGHTNESS
42/* Main LCD backlight brightness range and defaults */ 52/* Main LCD backlight brightness range and defaults */
43#define MIN_BRIGHTNESS_SETTING 1 53#define MIN_BRIGHTNESS_SETTING 1