I have a GPS unit capable of sending NMEA GPS data over IP (not the custom NMEA bus) to wherever. It is quite configurable, allowing changes to the format, etc.
Is it possible to have this ingested by the Cerbo GX on my network?
I have a GPS unit capable of sending NMEA GPS data over IP (not the custom NMEA bus) to wherever. It is quite configurable, allowing changes to the format, etc.
Is it possible to have this ingested by the Cerbo GX on my network?
Maybe I’ll scan the open ports on the GX and see if I get lucky…
This post seems like the simplest approach, if I can figure out how to get root access:
https://www.reddit.com/r/Victron/comments/1dq4c9d/cerbo_gx_gps_module_with_sma_external_antenna/
I configured my router to send NMEA strings to the Cerbo’s IP on port 5555 every 3 seconds and created this /data/rc.local
file:
#!/bin/bash
# Setup UDP socket GPS
/usr/bin/socat UDP4-RECV:5555 pty,link=/dev/ttyRUTX,raw,nonblock,echo=0,b115200 2>> /data/socat.log &
sleep 2 # give time for data
/opt/victronenergy/gps-dbus/gps_dbus -s /dev/ttyRUTX -b 115200 -t 0 &
This seems to have worked.
If anyone knows more about which NMEA strings are useful and what frequency is required, please let me know.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.