mirror of https://github.com/ArduPilot/ardupilot
Tools: autotest: add defaults file for broken copter frames
This adds default files for copter frames which were broken because of missing defaults
This commit is contained in:
parent
6162775dd0
commit
7237e346d8
|
@ -6824,9 +6824,6 @@ class AutoTestCopter(AutoTest):
|
|||
vinfo = vehicleinfo.VehicleInfo()
|
||||
copter_vinfo_options = vinfo.options[self.vehicleinfo_key()]
|
||||
known_broken_frames = {
|
||||
'cwx': "missing defaults file",
|
||||
'deca-cwx': 'missing defaults file',
|
||||
'djix': "missing defaults file",
|
||||
'heli-compound': "wrong binary, different takeoff regime",
|
||||
'heli-dual': "wrong binary, different takeoff regime",
|
||||
'heli': "wrong binary, different takeoff regime",
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
FRAME_TYPE 14
|
|
@ -0,0 +1 @@
|
|||
FRAME_TYPE 14
|
|
@ -0,0 +1 @@
|
|||
FRAME_TYPE 13
|
|
@ -105,7 +105,11 @@ class VehicleInfo(object):
|
|||
},
|
||||
"deca-cwx": {
|
||||
"waf_target": "bin/arducopter",
|
||||
"default_params_filename": "default_params/copter.parm",
|
||||
"default_params_filename": [
|
||||
"default_params/copter.parm",
|
||||
"default_params/copter-deca.parm",
|
||||
"default_params/copter-deca-cwx.parm"
|
||||
],
|
||||
},
|
||||
"tri": {
|
||||
"waf_target": "bin/arducopter",
|
||||
|
|
Loading…
Reference in New Issue