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

X9D+ 2019 builds added

This commit is contained in:
Bertrand Songis 2019-08-12 11:28:18 +02:00
parent 0c74a9839b
commit 23a28b9b10

View file

@ -6,6 +6,7 @@ import sys
import subprocess import subprocess
import shutil import shutil
import filelock import filelock
from fwoptions import * from fwoptions import *
# Error codes # Error codes
@ -100,6 +101,14 @@ elif options[optcount] == "x9d+":
maxsize = 65536 * 8 maxsize = 65536 * 8
board = BOARD_TARANIS board = BOARD_TARANIS
board_family = BOARD_FAMILY_ARM board_family = BOARD_FAMILY_ARM
elif options[optcount] == "x9d+2019":
command_options["PCB"] = "X9D+"
command_options["PCBREV"] = "2019"
command_options["MULTI_SPORT"] = "ON"
firmware_options = options_taranis_x9dp
maxsize = 65536 * 8
board = BOARD_TARANIS
board_family = BOARD_FAMILY_ARM
elif options[optcount] == "x9e": elif options[optcount] == "x9e":
command_options["PCB"] = "X9E" command_options["PCB"] = "X9E"
command_options["MULTI_SPORT"] = "ON" command_options["MULTI_SPORT"] = "ON"