Browse Source

Tools: autotest: add --tonealarm option to sim_vehicle.py

master
Peter Barker 6 years ago committed by Andrew Tridgell
parent
commit
0b376f1f14
  1. 8
      Tools/autotest/sim_vehicle.py

8
Tools/autotest/sim_vehicle.py

@ -294,6 +294,9 @@ def do_build_waf(opts, frame_options): @@ -294,6 +294,9 @@ def do_build_waf(opts, frame_options):
if opts.OSD:
cmd_configure.append("--enable-sfml")
if opts.tonealarm:
cmd_configure.append("--enable-sfml-audio")
if opts.flash_storage:
cmd_configure.append("--sitl-flash-storage")
@ -897,6 +900,11 @@ group_sim.add_option("", "--osd", @@ -897,6 +900,11 @@ group_sim.add_option("", "--osd",
dest='OSD',
default=False,
help="Enable SITL OSD")
group_sim.add_option("", "--tonealarm",
action='store_true',
dest='tonealarm',
default=False,
help="Enable SITL ToneAlarm")
group_sim.add_option("", "--add-param-file",
type='string',
default=None,

Loading…
Cancel
Save