mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-22 15:53:56 -04:00
Tools: added --enable-ppp to sim_vehicle.py
This commit is contained in:
parent
812ac6bc0a
commit
799b01c6c6
@ -414,6 +414,9 @@ def do_build(opts, frame_options):
|
||||
if opts.disable_networking:
|
||||
cmd_configure.append("--disable-networking")
|
||||
|
||||
if opts.enable_ppp:
|
||||
cmd_configure.append("--enable-ppp")
|
||||
|
||||
if opts.enable_networking_tests:
|
||||
cmd_configure.append("--enable-networking-tests")
|
||||
|
||||
@ -1333,6 +1336,8 @@ group_sim.add_option("--enable-dds", action='store_true',
|
||||
help="Enable the dds client to connect with ROS2/DDS")
|
||||
group_sim.add_option("--disable-networking", action='store_true',
|
||||
help="Disable networking APIs")
|
||||
group_sim.add_option("--enable-ppp", action='store_true',
|
||||
help="Enable PPP networking")
|
||||
group_sim.add_option("--enable-networking-tests", action='store_true',
|
||||
help="Enable networking tests")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user