summaryrefslogtreecommitdiff
path: root/firmware/export/config-mrobe100.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/config-mrobe100.h')
-rw-r--r--firmware/export/config-mrobe100.h24
1 files changed, 23 insertions, 1 deletions
diff --git a/firmware/export/config-mrobe100.h b/firmware/export/config-mrobe100.h
index b1299a820a..3fcef555d4 100644
--- a/firmware/export/config-mrobe100.h
+++ b/firmware/export/config-mrobe100.h
@@ -45,7 +45,24 @@
45 45
46/*#define IRAM_LCDFRAMEBUFFER IDATA_ATTR */ /* put the lcd frame buffer in IRAM */ 46/*#define IRAM_LCDFRAMEBUFFER IDATA_ATTR */ /* put the lcd frame buffer in IRAM */
47 47
48#define CONFIG_KEYPAD MROBE100_PAD 48#ifndef BOOTLOADER
49/* Define this if you have an remote lcd */
50#define HAVE_REMOTE_LCD
51
52#define LCD_REMOTE_WIDTH 79
53#define LCD_REMOTE_HEIGHT 16
54#define LCD_REMOTE_DEPTH 1
55#define LCD_REMOTE_PIXELFORMAT VERTICAL_PACKING
56
57/* Remote display colours, for screenshots and sim (0xRRGGBB) */
58#define LCD_REMOTE_DARKCOLOR 0x000000
59#define LCD_REMOTE_BRIGHTCOLOR 0x5a915a
60#define LCD_REMOTE_BL_DARKCOLOR 0x000000
61#define LCD_REMOTE_BL_BRIGHTCOLOR 0x82b4fa
62#endif /* BOOTLOADER */
63
64#define CONFIG_KEYPAD MROBE100_PAD
65#define CONFIG_REMOTE_KEYPAD MROBE_REMOTE
49 66
50/* Define this if you do software codec */ 67/* Define this if you do software codec */
51#define CONFIG_CODEC SWCODEC 68#define CONFIG_CODEC SWCODEC
@@ -90,6 +107,11 @@
90 107
91#define HAVE_BUTTONLIGHT_BRIGHTNESS 108#define HAVE_BUTTONLIGHT_BRIGHTNESS
92 109
110/* Remote LCD contrast range and defaults */
111#define MIN_REMOTE_CONTRAST_SETTING 0
112#define MAX_REMOTE_CONTRAST_SETTING 15
113#define DEFAULT_REMOTE_CONTRAST_SETTING 8
114
93/* Define this if your LCD can be enabled/disabled */ 115/* Define this if your LCD can be enabled/disabled */
94/* TODO: #define HAVE_LCD_ENABLE */ 116/* TODO: #define HAVE_LCD_ENABLE */
95 117