Skip to content

Commit ba0b8ff

Browse files
committed
remove 2.11 support
1 parent 5cab7de commit ba0b8ff

3 files changed

Lines changed: 6 additions & 9 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,5 +113,5 @@ The simulator supports multiple test scenarios, configurable via the `config.sce
113113

114114
| Radio type | Firmware | ExpressLRS |
115115
|------------|----------|------------|
116-
| Black & white LCD | EdgeTX 2.11.5+, 2.12-rc4+, or 3.0+ | v3.0+ |
117-
| Color LCD | EdgeTX 2.11.5+, 2.12-rc4+, or 3.0+ | v3.0+ |
116+
| Black & white LCD | EdgeTX 2.12-rc4+ or 3.0+ | v3.0+ |
117+
| Color LCD | EdgeTX 2.12-rc4+ or 3.0+ | v3.0+ |

src/SCRIPTS/TOOLS/ExpressLRS/main.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
---- # #
66
---- # License GPLv2: http://www.gnu.org/licenses/gpl-2.0.html #
77
---- # #
8-
---- # Unified tool for BW and color LCD radios (EdgeTX 2.11+) #
8+
---- # Unified tool for BW and color LCD radios (EdgeTX 2.12+) #
99
---- #########################################################################
1010

1111
local VERSION = "r2"

src/SCRIPTS/TOOLS/ExpressLRS/ui/lvgl.lua

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---- #########################################################################
22
---- # LVGL UI: Color LCD rendering, dialogs, command pages #
3-
---- # For color LCD radios with EdgeTX 2.11.4+ LVGL support #
3+
---- # For color LCD radios with EdgeTX 2.12+ LVGL support #
44
---- #########################################################################
55

66
local deps = ...
@@ -346,8 +346,6 @@ local function checkEdgeTxVersion()
346346
return tonumber(rc) >= 4
347347
end
348348
return true
349-
elseif maj == 2 and minor == 11 and rev >= 5 then
350-
return true
351349
end
352350

353351
return false
@@ -373,7 +371,6 @@ local function showVersionRequired()
373371
flexPad = lvgl.PAD_SMALL,
374372
children = {
375373
{ type = "label", text = "Requires EdgeTX:" },
376-
{ type = "label", text = "- 2.11.5 or later" },
377374
{ type = "label", text = "- 2.12-rc4 or later" },
378375
{ type = "label", text = "- 3.0 or later" },
379376
},
@@ -402,8 +399,8 @@ local function showLvglRequired()
402399
lcd.clear()
403400
lcd.drawText(5, 10, "LVGL support required", BOLD)
404401
lcd.drawText(5, 20, "Color LCD radio with", 0)
405-
lcd.drawText(5, 30, "EdgeTX 2.11.5+, 2.12-rc4+,", 0)
406-
lcd.drawText(5, 40, "or 3.0+ needed", 0)
402+
lcd.drawText(5, 30, "EdgeTX 2.12-rc4+ or 3.0+", 0)
403+
lcd.drawText(5, 40, "needed", 0)
407404
end
408405

409406
-- ============================================================================

0 commit comments

Comments
 (0)