This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
sdk:gps-udp-client-gnsstogps [2019/11/28 11:16] – fachet | sdk:gps-udp-client-gnsstogps [2021/10/08 10:22] (current) – [SDK Script gps-udp-client-GNSStoGPS.are] dodenhoeft | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Background ====== | ====== Background ====== | ||
- | GPS was the first Global Navigation Satellite System (GNSS) and the termt GPS is often used as a synonym for GNSS. | + | GPS was the first Global Navigation Satellite System (GNSS) and the term GPS is often used as a synonym for GNSS. |
+ | |||
+ | Older software often only checks for NMEA 0183 sentences starting with < | ||
+ | |||
+ | Newer GNSS receivers often use multiple GNSS systems and therefore < | ||
- | Because of this older software only check for NMEA 0183 sentences starting with < | ||
- | Unfortunately with newer GNSS receiver often multiple GNSS systems are used and therefore < | ||
It would be better to us instead of < | It would be better to us instead of < | ||
Line 15: | Line 17: | ||
GL = GLONASS | GL = GLONASS | ||
GP = GPS | GP = GPS | ||
- | GN = GNSS(multiple sources e.g. GPS " | + | GN = GNSS position fix from more than one constellation |
" | " | ||
RMC = Recommended Minimum Sentence C (used in most cases) | RMC = Recommended Minimum Sentence C (used in most cases) | ||
Line 50: | Line 52: | ||
nb_config_set(" | nb_config_set(" | ||
- | sleep(3); | + | do { |
+ | | ||
+ | } while ( nb_config_done() != 0) | ||
+ | |||
nb_config_set(" | nb_config_set(" | ||
- | sleep(5); | + | do { |
+ | | ||
+ | } while ( nb_config_done() != 0) | ||
return 0; | return 0; | ||
} | } | ||
- | |||
int gpsd_connect () | int gpsd_connect () | ||
{ | { | ||
Line 66: | Line 71: | ||
exit(-1); | exit(-1); | ||
} | } | ||
- | for (attempt = 0; attempt <= 5; attempt++) { | + | for (attempt = 0; attempt <= 15; attempt++) { |
- | sleep(3); | + | sleep(15); |
if (connect(gpsd, | if (connect(gpsd, | ||
nb_syslog(" | nb_syslog(" | ||
- | if (attempt == 3) { | + | if (attempt == 12) { |
nb_syslog(" | nb_syslog(" | ||
gpsd_restart(); | gpsd_restart(); |