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:
Peter Barker 2025-01-13 16:16:18 +11:00 committed by Peter Barker
parent 6d31555236
commit 7c2d329d75
2 changed files with 0 additions and 4 deletions

View File

@ -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])

View File

@ -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"]])