Generic NMEA GPS Receiver
Last update: May 4, 2022 17:05 UTC (dbea9b7d4)
Table of Contents
Synopsis
- Address:
127.127.20.u
- Reference ID:
GPS
- Driver ID:
GPS_NMEA
- Serial Port:
/dev/gps_u
; 4800 baud, 8-bits, no parity
- Features:
tty_clk
Description
This driver supports GPS’s with the $GPRMC
NMEA output string. The driver expects the GPS to be set up to transmit a $GPRMC
message every second.
The accuracy depends on the GPS used. Inexpensive GPS models are available with a claimed PPS signal accuracy of 1 μs or better relative to the broadcast signal. However, in most cases the actual accuracy is limited by the precision of the timecode and the latencies of the serial interface and operating system.
The $GPRMC
message that the GPS transmits look like this:
$GPRMC,POS_UTC,POS_STAT,LAT,LAT_REF,LON,LON_REF,SPD,HDG,DATE,MAG_VAR,MAG_REF*CC‹cr›‹lf›
POS_UTC - UTC of position. Hours, minutes and seconds. (hhmmss)
POS_STAT - Position status. (A = Data valid, V = Data invalid)
LAT - Latitude (llll.ll)
LAT_REF - Latitude direction. (N = North, S = South)
LON - Longitude (yyyyy.yy)
LON_REF - Longitude direction (E = East, W = West)
SPD - Speed over ground. (knots) (x.x)
HDG - Heading/track made good (degrees True) (x.x)
DATE - Date (ddmmyy)
MAG_VAR - Magnetic variation (degrees) (x.x)
MAG_REF - Magnetic variation (E = East, W = West)
CC - Checksum (optional)
‹cr›‹lf› - Sentence terminator.
The driver will send a $PMOTG,RMC,0000*1D<cr><lf>
message each time a $GPRMC
string is needed. This is not needed on most GPS receivers because they automatically send the $GPRMC
string every second and will only work on GPS receivers that understand the $PMOTG
string. Others will just ignore it.
Setting up the Garmin GPS-25XL
Switch off all output by sending it the following string.
"$PGRMO,,2<cr><lf>"
Now switch only $GPRMC
on by sending it the following string.
"$PGRMO,GPRMC,1<cr><lf>"
On some systems the PPS signal isn’t switched on by default. It can be switched on by sending the following string.
"$PGRMC,,,,,,,,,,,,2<cr><lf>"
Monitor Data
The $GPRMC
string that is used is written to the clockstats file.
Fudge Factors
time1 time
-
Specifies the time offset calibration factor, in seconds and fraction, with default 0.0.
time2 time
-
Not used by this driver.
stratum number
-
Specifies the driver stratum, in decimal from 0 to 15, with default 0.
refid string
-
Specifies the driver reference identifier, an ASCII string from one to four characters, with default GPS
.
flag1 0 | 1
-
Not used by this driver.
flag2 0 | 1
-
Not used by this driver.
flag3 0 | 1
-
Not used by this driver.
flag4 0 | 1
-
Not used by this driver.
Reference Clock Drivers