mirror of https://github.com/ArduPilot/ardupilot
autotest: fix octa-cwx in SITL
This commit is contained in:
parent
5172e767df
commit
76678ffaf3
|
@ -6493,7 +6493,6 @@ class AutoTestCopter(AutoTest):
|
|||
'heli': "wrong binary, different takeoff regime",
|
||||
'hexa-cwx': "does not take off",
|
||||
'hexa-dji': "does not take off",
|
||||
'octa-cwx': "does not take off",
|
||||
'octa-quad-cwx': "does not take off",
|
||||
'tri': "does not take off",
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
FRAME_TYPE 14
|
|
@ -58,7 +58,11 @@ class VehicleInfo(object):
|
|||
},
|
||||
"octa-cwx": {
|
||||
"waf_target": "bin/arducopter",
|
||||
"default_params_filename": "default_params/copter.parm",
|
||||
"default_params_filename": [
|
||||
"default_params/copter.parm",
|
||||
"default_params/copter-octa.parm",
|
||||
"default_params/copter-octa-cwx.parm"
|
||||
],
|
||||
},
|
||||
"octa-quad-cwx": {
|
||||
"waf_target": "bin/arducopter",
|
||||
|
|
Loading…
Reference in New Issue