edgetx
edgetx copied to clipboard
EdgeTX is the cutting edge open source firmware for your R/C radio
Group radio functions in own 'class/object' defaultChannel -> radio.getDefaultChannel() defaultStick -> radio.getDefaultStick() getAvailableMemory -> radio.getLuaAvailableMemory() getUsage() -> radio.getLuaUsage() getDateTime -> radio.getRtcDateTime() getRtcTime -> radio.getRtcTime() getTime - > radio.getTime() getFieldInfo ->...
this refers #777 In current implementation to check if Telemetry data is coming we have to: 1. getRSSI() and check against 0. 2. getValue('sensorName') against 0. There should be simple...
This refers #777 There is getValue() which read also telemetry sensors as telemetry sensors are listed as standard fields. This creates some problems I think @lshems mentioned this but I'm...
Group telemetry functions in own 'class/object' accessTelemetryPush -> tele.accessPush() accessTelemetryPop -> tele.accessPop() crossfireTelemetryPush() -> tele.crossfirePush() crossfireTelemetryPop() -> tele.crossfirePop() sportTelemetryPush() -> tele.sportPush() sportTelemetryPop() -> tele.sportPop() setTelemetryValue() -> tele.setSensorValue() getRSSI() -> tele.getRSSI()
Continues LUA API naming scheme. lcd.RGB -> lcd.setColorFlag() because this is what function actually does To maintain legacy lcd.setColorFlag should be main function and lcd.RGB should point to it and...
As File System #630 will grow over time including next methods I suggest to move existing functions to own 'class/object' and maintain LUA API naming scheme. And then we put...
change function name to lcd.getTextSize maintain naming scheme consistency. @jfrickmann
In looking at #236, I noticed that the TX16S doesn't have power on or splash screen delay settings... I don't know if the former is possible, but some people would...
This another thing we may consider to add to 2.4 Currently going to any MODEL/RADIO tab we have (depending on TAB) 9 parameters lines, so it's quite tight. In terms...
This PR continues the MAVLink integration of #122. ## TODOs ### Cosmetics / Code structure - [x] Remove Olli's markers (`// OW` / `// OWEND`). - [x] Use the standard...