From 0a815368144e021d3b6d733c5965bd0530821b80 Mon Sep 17 00:00:00 2001 From: dc Date: Fri, 19 Jan 2024 02:18:43 -0500 Subject: [PATCH] feat(X10E): Allow minimum backlight value to be much lower (#4540) This a 2.9 branch version of #4539 --- radio/src/targets/horus/board.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radio/src/targets/horus/board.h b/radio/src/targets/horus/board.h index 77bacdb3b54..8645dd1d8a0 100644 --- a/radio/src/targets/horus/board.h +++ b/radio/src/targets/horus/board.h @@ -522,7 +522,7 @@ void DMABitmapConvert(uint16_t * dest, const uint8_t * src, uint16_t w, uint16_t #define BACKLIGHT_FORCED_ON BACKLIGHT_LEVEL_MAX + 1 #if defined(PCBX12S) #define BACKLIGHT_LEVEL_MIN 5 -#elif defined(RADIO_FAMILY_T16) +#elif defined(RADIO_FAMILY_T16) || defined(RADIO_X10E) #define BACKLIGHT_LEVEL_MIN 1 #else #define BACKLIGHT_LEVEL_MIN 46