-
Notifications
You must be signed in to change notification settings - Fork 20
Description
Hi
I've got gpoint working with a Telit LE910C1 module. I haven't quite worked out how to get it going without manual intervention after power cycling though. The issue is that the Telit LE910C1 exposes several ttyUSBx interfaces, each with different purposes. In my case, /dev/ttyUSB1 is the GPS/NMEA interface and is output/read only. /dev/ttyUSB2 is the AT interface and is where AT commands can be used to configure and enable NMEA output.
Currently I have to manually run the relevant commands in /dev/ttyUSB2 to start the NMEA stream on /dev/ttyUSB1. Is there a way to configure GPoint to send initialisation commands to one interface and read NMEA from a different interface?
This is what I have to run on power cycle to start the NMEA stream. Source: SixFab docs (although i'm not using their hat, just the LTE module.
AT$GPSRST
AT$GPSNVRAM=15,0
AT$GPSACP
AT$GPSNMUN=2,1,1,1,1,1,1
AT$GPSP=1
Once I know how to set it up properly I'd like to make a PR to add support officially.
Thanks