1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-25 17:25:13 +03:00

Fix T18 missing internal multi

This commit is contained in:
Kilrah 2020-06-26 01:39:40 +02:00
parent e203211482
commit feb5a07237
2 changed files with 14 additions and 1 deletions

View file

@ -151,7 +151,7 @@ def main():
elif board_name == "t18":
cmake_options["PCB"] = "X10"
cmake_options["PCBREV"] = "T18"
firmware_options = options_jumper_t16
firmware_options = options_jumper_t18
maxsize = 2 * 1024 * 1024
elif board_name == "tx16s":
cmake_options["PCB"] = "X10"

View file

@ -235,6 +235,19 @@ options_jumper_t16 = {
"afhds3": ("AFHDS3", "YES", "NO")
}
options_jumper_t18 = {
"noheli": ("HELI", "NO", "YES"),
"ppmus": ("PPM_UNIT", "US", "PERCENT_PREC1"),
"lua": ("LUA", "YES", "NO_MODEL_SCRIPTS"),
"nogvars": ("GVARS", "NO", "YES"),
"faimode": ("FAI", "YES", None),
"faichoice": ("FAI", "CHOICE", None),
"nooverridech": ("OVERRIDE_CHANNEL_FUNCTION", "NO", "YES"),
"flexr9m": ("MODULE_PROTOCOL_FLEX", "YES", None),
"bluetooth": ("BLUETOOTH", "YES", "NO"),
"afhds3": ("AFHDS3", "YES", "NO")
}
options_radiomaster_tx16s = {
"noheli": ("HELI", "NO", "YES"),
"ppmus": ("PPM_UNIT", "US", "PERCENT_PREC1"),