scripts: add SPRacingH7 to manifest files and CI build

This commit is contained in:
Andy Piper 2022-02-13 14:38:00 +00:00 committed by Andrew Tridgell
parent e88ad24ab5
commit a34f8e1b8d
3 changed files with 10 additions and 1 deletions

View File

@ -121,7 +121,6 @@ class BoardList(object):
# bdshot # bdshot
"CubeYellow-bdshot", "CubeYellow-bdshot",
"fmuv3-bdshot", "fmuv3-bdshot",
"fmuv5-bdshot",
"KakuteF7-bdshot", "KakuteF7-bdshot",
"OMNIBUSF7V2-bdshot", "OMNIBUSF7V2-bdshot",
"Pixhawk1-1M-bdshot", "Pixhawk1-1M-bdshot",

View File

@ -253,6 +253,8 @@ for t in $CI_BUILD_TARGET; do
# test bi-directional dshot build # test bi-directional dshot build
echo "Building KakuteF7Mini" echo "Building KakuteF7Mini"
$waf configure --Werror --board KakuteF7Mini $waf configure --Werror --board KakuteF7Mini
$waf clean
$waf copter
# test bi-directional dshot build and smallest flash # test bi-directional dshot build and smallest flash
echo "Building KakuteF7" echo "Building KakuteF7"
@ -267,6 +269,12 @@ for t in $CI_BUILD_TARGET; do
$waf configure --board Durandal $waf configure --board Durandal
$waf clean $waf clean
$waf copter $waf copter
# test external flash build
echo "Building SPRacingH7"
$waf configure --Werror --board SPRacingH7
$waf clean
$waf copter
continue continue
fi fi

View File

@ -30,6 +30,7 @@ brand_map = {
'KakuteF7' : ('KakuteF7', 'Holybro'), 'KakuteF7' : ('KakuteF7', 'Holybro'),
'KakuteF7Mini' : ('KakuteF7Mini', 'Holybro'), 'KakuteF7Mini' : ('KakuteF7Mini', 'Holybro'),
'KakuteF4Mini' : ('KakuteF4Mini', 'Holybro'), 'KakuteF4Mini' : ('KakuteF4Mini', 'Holybro'),
'KakuteH7Mini' : ('KakuteH7Mini', 'Holybro'),
'CubeBlack' : ('CubeBlack', 'Hex/ProfiCNC'), 'CubeBlack' : ('CubeBlack', 'Hex/ProfiCNC'),
'CubeYellow' : ('CubeYellow', 'Hex/ProfiCNC'), 'CubeYellow' : ('CubeYellow', 'Hex/ProfiCNC'),
'CubeOrange' : ('CubeOrange', 'Hex/ProfiCNC'), 'CubeOrange' : ('CubeOrange', 'Hex/ProfiCNC'),
@ -83,6 +84,7 @@ brand_map = {
"modalai_fc-v1" : ('ModalAI FlightCore v1', 'ModalAI'), "modalai_fc-v1" : ('ModalAI FlightCore v1', 'ModalAI'),
'Pixhawk5X' : ('Pixhawk 5X', 'Holybro'), 'Pixhawk5X' : ('Pixhawk 5X', 'Holybro'),
"AIRLink" : ("Sky-Drones Technologies", "AIRLink"), "AIRLink" : ("Sky-Drones Technologies", "AIRLink"),
"SPRacingH7" : ("Seriously Pro Racing", "H7 Extreme"),
} }
class Firmware(): class Firmware():