summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/backlight.h6
-rw-r--r--firmware/export/config-e200.h3
2 files changed, 9 insertions, 0 deletions
diff --git a/firmware/export/backlight.h b/firmware/export/backlight.h
index 4b164c63d2..9bcb6e9d1d 100644
--- a/firmware/export/backlight.h
+++ b/firmware/export/backlight.h
@@ -80,4 +80,10 @@ void sim_remote_backlight(int value);
80void backlight_set_brightness(int val); 80void backlight_set_brightness(int val);
81#endif /* HAVE_BACKLIGHT_BRIGHTNESS */ 81#endif /* HAVE_BACKLIGHT_BRIGHTNESS */
82 82
83#ifdef HAVE_BUTTON_LIGHT
84void button_backlight_on(void);
85void button_backlight_off(void);
86void button_backlight_set_timeout(int index);
87#endif
88
83#endif /* BACKLIGHT_H */ 89#endif /* BACKLIGHT_H */
diff --git a/firmware/export/config-e200.h b/firmware/export/config-e200.h
index ccff38dbf2..87d7e78fbb 100644
--- a/firmware/export/config-e200.h
+++ b/firmware/export/config-e200.h
@@ -22,6 +22,9 @@
22#define MAX_BRIGHTNESS_SETTING 12 22#define MAX_BRIGHTNESS_SETTING 12
23#define DEFAULT_BRIGHTNESS_SETTING 6 23#define DEFAULT_BRIGHTNESS_SETTING 6
24 24
25/* define this if you have a light associated with the buttons */
26#define HAVE_BUTTON_LIGHT
27
25/* define this if you have access to the quickscreen */ 28/* define this if you have access to the quickscreen */
26#define HAVE_QUICKSCREEN 29#define HAVE_QUICKSCREEN
27 30