To forward telemetry stream using MAVProxy:
mavproxy.py --master=X --out=Y
where X is source (your vehicle) and Y is the destination.
- Connection addresses could be one of the followings:
/dev/ttyUSBX
for Linux andCOMX
for Windows serial connections.tcp:IP:PORT
for local TCP connections.udp:IP:PORT
or justIP:PORT
for local UDP connections.tcpout:IP:PORT
for remote TCP connections.udpout:IP:PORT
for remote UDP connections.
- If connection is a serial connection, baud rate can be specified as:
--baudrate=X
or--master=Y,X
,--out=Y,X
where X is the baud rate.
- Always use UDP connection for your telemetry streams for continuity, low latency and ease of use.
- Deal with the redundancy and guaranteed message delivery on your application.
- More than one master source (of the same vehicle) and/or output stream can be defined.