mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-19 07:08:29 -04:00
Tools: remove command-line option enabling synthetic clock
it's always on, all the time this has always been set for many years
This commit is contained in:
parent
6d31555236
commit
7c2d329d75
@ -416,7 +416,6 @@ def start_SITL(binary,
|
|||||||
gdb=False,
|
gdb=False,
|
||||||
gdb_no_tui=False,
|
gdb_no_tui=False,
|
||||||
wipe=False,
|
wipe=False,
|
||||||
synthetic_clock=True,
|
|
||||||
home=None,
|
home=None,
|
||||||
model=None,
|
model=None,
|
||||||
speedup=1,
|
speedup=1,
|
||||||
@ -516,8 +515,6 @@ def start_SITL(binary,
|
|||||||
if not supplementary:
|
if not supplementary:
|
||||||
if wipe:
|
if wipe:
|
||||||
cmd.append('-w')
|
cmd.append('-w')
|
||||||
if synthetic_clock:
|
|
||||||
cmd.append('-S')
|
|
||||||
if home is not None:
|
if home is not None:
|
||||||
cmd.extend(['--home', home])
|
cmd.extend(['--home', home])
|
||||||
cmd.extend(['--model', model])
|
cmd.extend(['--model', model])
|
||||||
|
@ -766,7 +766,6 @@ def start_vehicle(binary, opts, stuff, spawns=None):
|
|||||||
cmd.extend(strace_options)
|
cmd.extend(strace_options)
|
||||||
|
|
||||||
cmd.append(binary)
|
cmd.append(binary)
|
||||||
cmd.append("-S")
|
|
||||||
if opts.wipe_eeprom:
|
if opts.wipe_eeprom:
|
||||||
cmd.append("-w")
|
cmd.append("-w")
|
||||||
cmd.extend(["--model", stuff["model"]])
|
cmd.extend(["--model", stuff["model"]])
|
||||||
|
Loading…
Reference in New Issue
Block a user