mirror of https://github.com/ArduPilot/ardupilot
Added output to localhost for QGC
This commit is contained in:
parent
5090f2710b
commit
75e1582db4
|
@ -39,8 +39,8 @@ def rmfile(path):
|
||||||
def deltree(path):
|
def deltree(path):
|
||||||
'''delete a tree of files'''
|
'''delete a tree of files'''
|
||||||
run_cmd('rm -rf %s' % path)
|
run_cmd('rm -rf %s' % path)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def build_SIL(atype):
|
def build_SIL(atype):
|
||||||
'''build desktop SIL'''
|
'''build desktop SIL'''
|
||||||
|
@ -111,7 +111,7 @@ def start_MAVProxy_SIL(atype, aircraft=None, setup=False, master='tcp:127.0.0.1:
|
||||||
'''launch mavproxy connected to a SIL instance'''
|
'''launch mavproxy connected to a SIL instance'''
|
||||||
global close_list
|
global close_list
|
||||||
MAVPROXY = reltopdir('../MAVProxy/mavproxy.py')
|
MAVPROXY = reltopdir('../MAVProxy/mavproxy.py')
|
||||||
cmd = MAVPROXY + ' --master=%s --fgrate=%u' % (master, fgrate)
|
cmd = MAVPROXY + ' --master=%s --fgrate=%u --out=127.0.0.1:14550' % (master, fgrate)
|
||||||
if setup:
|
if setup:
|
||||||
cmd += ' --setup'
|
cmd += ' --setup'
|
||||||
if aircraft is None:
|
if aircraft is None:
|
||||||
|
|
Loading…
Reference in New Issue