MAVLink Fowrding

Hi, i want to make send my telemetry from QGroundControl through port UDP/TCP. I find the MavLinkFowarding section. When i use this with port 8080 at 127.0.0.1 no message is show in my “Server” or data receiver.
My Server is a python server that connects via UDP to the 8080 port and decode the data and print in console. This error appers:

how can i decode the message?

This is binary MAVLink data, you can’t just decode it as UTF-8 and print it. You need to use a MAVLink library and parse it.

1 Like