summaryrefslogtreecommitdiff
path: root/firmware/export/config-mrobe500.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/config-mrobe500.h')
-rw-r--r--firmware/export/config-mrobe500.h25
1 files changed, 16 insertions, 9 deletions
diff --git a/firmware/export/config-mrobe500.h b/firmware/export/config-mrobe500.h
index d5d31ffc41..25699bd005 100644
--- a/firmware/export/config-mrobe500.h
+++ b/firmware/export/config-mrobe500.h
@@ -41,6 +41,9 @@
41/* define this if you have a colour LCD */ 41/* define this if you have a colour LCD */
42#define HAVE_LCD_COLOR 42#define HAVE_LCD_COLOR
43 43
44/* define this if you want album art for this target */
45//#define HAVE_ALBUMART
46
44/* define this if you have access to the quickscreen */ 47/* define this if you have access to the quickscreen */
45#define HAVE_QUICKSCREEN 48#define HAVE_QUICKSCREEN
46 49
@@ -58,14 +61,22 @@
58 61
59/* choose the lcd orientation. both work */ 62/* choose the lcd orientation. both work */
60/* #define CONFIG_ORIENTATION SCREEN_PORTRAIT */ 63/* #define CONFIG_ORIENTATION SCREEN_PORTRAIT */
61#define CONFIG_ORIENTATION SCREEN_LANDSCAPE 64#define CONFIG_ORIENTATION SCREEN_PORTRAIT
65
66#if 1
67#define NATIVE_MAX_WIDTH 480
68#define NATIVE_MAX_HEIGHT 640
69#else
70#define NATIVE_MAX_WIDTH 240
71#define NATIVE_MAX_HEIGHT 320
72#endif
62 73
63#if CONFIG_ORIENTATION == SCREEN_PORTRAIT 74#if CONFIG_ORIENTATION == SCREEN_PORTRAIT
64#define LCD_WIDTH 480 75#define LCD_WIDTH NATIVE_MAX_WIDTH
65#define LCD_HEIGHT 640 76#define LCD_HEIGHT NATIVE_MAX_HEIGHT
66#else 77#else
67#define LCD_WIDTH 640 78#define LCD_WIDTH NATIVE_MAX_HEIGHT
68#define LCD_HEIGHT 480 79#define LCD_HEIGHT NATIVE_MAX_WIDTH
69#endif 80#endif
70 81
71#define LCD_DEPTH 16 /* 65k colours */ 82#define LCD_DEPTH 16 /* 65k colours */
@@ -80,10 +91,6 @@
80 should be defined as well. */ 91 should be defined as well. */
81#define HAVE_LCD_SLEEP 92#define HAVE_LCD_SLEEP
82 93
83/* We don't use a setting but a fixed delay after the backlight has
84 * turned off */
85#define LCD_SLEEP_TIMEOUT (5*HZ)
86
87/* remote LCD */ 94/* remote LCD */
88//#define HAVE_REMOTE_LCD 95//#define HAVE_REMOTE_LCD
89#define LCD_REMOTE_WIDTH 79 96#define LCD_REMOTE_WIDTH 79