summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/lang/english.lang3
-rw-r--r--firmware/drivers/button.c5
-rw-r--r--firmware/export/config-c200.h2
3 files changed, 9 insertions, 1 deletions
diff --git a/apps/lang/english.lang b/apps/lang/english.lang
index 643d412c2c..189da0fa2d 100644
--- a/apps/lang/english.lang
+++ b/apps/lang/english.lang
@@ -3888,16 +3888,19 @@
3888 <source> 3888 <source>
3889 *: none 3889 *: none
3890 e200: "Wheel Light Timeout" 3890 e200: "Wheel Light Timeout"
3891 c200: "Button Light Timeout"
3891 gigabeatf: "Button Light Timeout" 3892 gigabeatf: "Button Light Timeout"
3892 </source> 3893 </source>
3893 <dest> 3894 <dest>
3894 *: none 3895 *: none
3895 e200: "Wheel Light Timeout" 3896 e200: "Wheel Light Timeout"
3897 c200: "Button Light Timeout"
3896 gigabeatf: "Button Light Timeout" 3898 gigabeatf: "Button Light Timeout"
3897 </dest> 3899 </dest>
3898 <voice> 3900 <voice>
3899 *: none 3901 *: none
3900 e200: "Wheel Light Timeout" 3902 e200: "Wheel Light Timeout"
3903 c200: "Button Light Timeout"
3901 gigabeatf: "Button Light Timeout" 3904 gigabeatf: "Button Light Timeout"
3902 </voice> 3905 </voice>
3903</phrase> 3906</phrase>
diff --git a/firmware/drivers/button.c b/firmware/drivers/button.c
index 7b5fd26f3b..862b02dcb8 100644
--- a/firmware/drivers/button.c
+++ b/firmware/drivers/button.c
@@ -256,7 +256,12 @@ static void button_tick(void)
256 remote_backlight_on(); 256 remote_backlight_on();
257 else 257 else
258#endif 258#endif
259 {
259 backlight_on(); 260 backlight_on();
261#ifdef HAVE_BUTTON_LIGHT
262 button_backlight_on();
263#endif
264 }
260 265
261 reset_poweroff_timer(); 266 reset_poweroff_timer();
262 } 267 }
diff --git a/firmware/export/config-c200.h b/firmware/export/config-c200.h
index 745ac546fd..4f95300425 100644
--- a/firmware/export/config-c200.h
+++ b/firmware/export/config-c200.h
@@ -27,7 +27,7 @@
27#define HAVE_LCD_COLOR 27#define HAVE_LCD_COLOR
28 28
29/* define this if you have a light associated with the buttons */ 29/* define this if you have a light associated with the buttons */
30/* TODO: #define HAVE_BUTTON_LIGHT */ 30#define HAVE_BUTTON_LIGHT
31 31
32/* define this if you have access to the quickscreen */ 32/* define this if you have access to the quickscreen */
33#define HAVE_QUICKSCREEN 33#define HAVE_QUICKSCREEN