mirror of https://github.com/wb2osz/direwolf.git
29 lines
519 B
C
29 lines
519 B
C
|
|
||
|
/* dwgpsnmea.h - For NMEA sentences over serial port */
|
||
|
|
||
|
|
||
|
|
||
|
#ifndef DWGPSNMEA_H
|
||
|
#define DWGPSNMEA_H 1
|
||
|
|
||
|
#include "dwgps.h" /* for dwfix_t */
|
||
|
#include "config.h"
|
||
|
|
||
|
|
||
|
int dwgpsnmea_init (struct misc_config_s *pconfig, int debug);
|
||
|
|
||
|
void dwgpsnmea_term (void);
|
||
|
|
||
|
|
||
|
dwfix_t dwgpsnmea_gprmc (char *sentence, int quiet, double *odlat, double *odlon, float *oknots, float *ocourse);
|
||
|
|
||
|
dwfix_t dwgpsnmea_gpgga (char *sentence, int quiet, double *odlat, double *odlon, float *oalt, int *onsat);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|
||
|
/* end dwgpsnmea.h */
|
||
|
|
||
|
|
||
|
|