board_list.py: tidy
This commit is contained in:
parent
224cea979e
commit
dfea221a49
@ -99,28 +99,38 @@ class BoardList(object):
|
|||||||
# should probably have a line in the hwdef indicating they
|
# should probably have a line in the hwdef indicating they
|
||||||
# shouldn't be auto-built...
|
# shouldn't be auto-built...
|
||||||
blacklist = [
|
blacklist = [
|
||||||
|
# the following boards are hacked into build_binaries.py
|
||||||
|
# to be built for Copter only:
|
||||||
|
"CubeGreen-solo",
|
||||||
|
"CubeSolo",
|
||||||
"skyviper-journey",
|
"skyviper-journey",
|
||||||
"skyviper-v2450",
|
"skyviper-v2450",
|
||||||
"CubeGreen-solo",
|
|
||||||
"omnibusf4pro-one",
|
# IOMCU:
|
||||||
"CubeSolo",
|
|
||||||
"MazzyStarDrone",
|
|
||||||
"fmuv3-bdshot",
|
|
||||||
"CubeYellow-bdshot",
|
|
||||||
"crazyflie2",
|
|
||||||
"NucleoH743",
|
|
||||||
"Pixhawk1-1M-bdshot",
|
|
||||||
"Nucleo-G491",
|
|
||||||
"fmuv5-bdshot",
|
|
||||||
"KakuteF7-bdshot",
|
|
||||||
"iomcu",
|
"iomcu",
|
||||||
"luminousbee4",
|
'iomcu_f103_8MHz',
|
||||||
"skyviper-f412-rev1",
|
|
||||||
"CubeOrange-joey",
|
# evaluation boards
|
||||||
"OMNIBUSF7V2-bdshot",
|
|
||||||
'H757I_EVAL',
|
'H757I_EVAL',
|
||||||
'H757I_EVAL_intf',
|
'H757I_EVAL_intf',
|
||||||
'iomcu_f103_8MHz',
|
"Nucleo-G491",
|
||||||
|
"NucleoH743",
|
||||||
|
|
||||||
|
# bdshot
|
||||||
|
"CubeYellow-bdshot",
|
||||||
|
"fmuv3-bdshot",
|
||||||
|
"fmuv5-bdshot",
|
||||||
|
"KakuteF7-bdshot",
|
||||||
|
"OMNIBUSF7V2-bdshot",
|
||||||
|
"Pixhawk1-1M-bdshot",
|
||||||
|
|
||||||
|
# other
|
||||||
|
"crazyflie2",
|
||||||
|
"CubeOrange-joey",
|
||||||
|
"luminousbee4",
|
||||||
|
"MazzyStarDrone",
|
||||||
|
"omnibusf4pro-one",
|
||||||
|
"skyviper-f412-rev1",
|
||||||
]
|
]
|
||||||
|
|
||||||
ret = filter(lambda x : x not in blacklist, ret)
|
ret = filter(lambda x : x not in blacklist, ret)
|
||||||
@ -129,14 +139,16 @@ class BoardList(object):
|
|||||||
|
|
||||||
def find_ap_periph_boards(self):
|
def find_ap_periph_boards(self):
|
||||||
blacklist = [
|
blacklist = [
|
||||||
"Pixracer-periph",
|
|
||||||
"f103-Trigger",
|
|
||||||
"H757I_EVAL",
|
|
||||||
"HerePro",
|
|
||||||
"HereID",
|
|
||||||
"G4-ESC",
|
|
||||||
"CubeOrange-periph-heavy",
|
"CubeOrange-periph-heavy",
|
||||||
"f103-HWESC",
|
"f103-HWESC",
|
||||||
|
"f103-Trigger",
|
||||||
|
"G4-ESC",
|
||||||
|
"HereID",
|
||||||
|
"HerePro",
|
||||||
|
"Pixracer-periph",
|
||||||
|
|
||||||
|
# evaluation boards
|
||||||
|
"H757I_EVAL",
|
||||||
"Nucleo-L476",
|
"Nucleo-L476",
|
||||||
"Nucleo-L496",
|
"Nucleo-L496",
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user