mirror of
https://github.com/opentx/opentx.git
synced 2025-07-23 16:25:16 +03:00
Improve build files
This commit is contained in:
parent
a73d11f106
commit
860b50faae
3 changed files with 136 additions and 55 deletions
69
tools/boards.py
Executable file
69
tools/boards.py
Executable file
|
@ -0,0 +1,69 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
boards = {
|
||||
"XLITE": {
|
||||
"PCB": "XLITE",
|
||||
},
|
||||
"XLITES": {
|
||||
"PCB": "XLITES",
|
||||
},
|
||||
"X9LITE": {
|
||||
"PCB": "X9LITE",
|
||||
},
|
||||
"X9LITES": {
|
||||
"PCB": "X9LITES",
|
||||
},
|
||||
"X9D": {
|
||||
"PCB": "X9D",
|
||||
},
|
||||
"X9D+": {
|
||||
"PCB": "X9D+",
|
||||
},
|
||||
"X9D+2019": {
|
||||
"PCB": "X9D+",
|
||||
"PCBREV": "2019",
|
||||
},
|
||||
"X9E": {
|
||||
"PCB": "X9E",
|
||||
},
|
||||
"X7": {
|
||||
"PCB": "X7",
|
||||
},
|
||||
"X7ACCESS": {
|
||||
"PCB": "X7",
|
||||
"PCBREV": "ACCESS",
|
||||
},
|
||||
"X10": {
|
||||
"PCB": "X10",
|
||||
},
|
||||
"X10EXPRESS": {
|
||||
"PCB": "X10",
|
||||
"PCBREV": "EXPRESS",
|
||||
},
|
||||
"X12S": {
|
||||
"PCB": "X12S",
|
||||
},
|
||||
"T16": {
|
||||
"PCB": "X10",
|
||||
"PCBREV": "T16",
|
||||
"INTERNAL_MODULE_MULTI": "YES"
|
||||
},
|
||||
"T18": {
|
||||
"PCB": "X10",
|
||||
"PCBREV": "T18",
|
||||
"INTERNAL_MODULE_MULTI": "YES"
|
||||
},
|
||||
"TX16S": {
|
||||
"PCB": "X10",
|
||||
"PCBREV": "TX16S",
|
||||
"INTERNAL_MODULE_MULTI": "YES"
|
||||
},
|
||||
"T12": {
|
||||
"PCB": "X7",
|
||||
"PCBREV": "T12",
|
||||
},
|
||||
"TX12": {
|
||||
"PCB": "X7",
|
||||
"PCBREV": "TX12",
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue