mirror of https://github.com/ArduPilot/ardupilot
Tools: extend error message when not finding defaults
This commit is contained in:
parent
0b7f6c90e5
commit
3f9062d676
|
@ -232,7 +232,7 @@ if __name__ == '__main__':
|
||||||
have_defaults = defaults.find()
|
have_defaults = defaults.find()
|
||||||
|
|
||||||
if not have_defaults and not args.extract:
|
if not have_defaults and not args.extract:
|
||||||
print("Error: Param defaults support not found in firmware")
|
print("Error: Param defaults support not found in firmware; see https://ardupilot.org/copter/docs/common-oem-customizations.html for embedding defaults.parm")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
if have_defaults:
|
if have_defaults:
|
||||||
|
|
Loading…
Reference in New Issue