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/ttyUSBXfor Linux andCOMXfor Windows serial connections.tcp:IP:PORTfor local TCP connections.udp:IP:PORTor justIP:PORTfor local UDP connections.tcpout:IP:PORTfor remote TCP connections.udpout:IP:PORTfor remote UDP connections.
- If connection is a serial connection, baud rate can be specified as:
--baudrate=Xor--master=Y,X,--out=Y,Xwhere 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.