I appear stuck and am calling for help!
I have a RPi3 B+ model connected via GPIO pins 14/15 (/dev/ttyS0) to Pixhawk using the Mavlink Comm protocol working! Code: Select all
$ sudo -s
$ mavproxy.py --master=/dev/ttyS0 --baudrate 57600
can add also options like: Code: Select all
--out=udp:(IP):Port
multiple times to how ever many IPs i want.
Now is the tricky part, to my RPi i have an Eth connection connected to an RX/TX device. [Device IP: 192.168.19.240 ; Device Port:23] I want to transfer all of the incoming data to/from the RX/TX device to the Pixhawk and back.
Ive tried using Socat with multiple commands such as:
$sudo socat PTY,link=/dev/ttyS0,raw,echo=0 udp4:192.168.19.240:23
with no success.
Any information is valuable!!
thank you!