Rev 2 |
Blame |
Last modification |
View Log
| Download
| RSS feed
/*
* nmea.h
*
* Created on: 6 Sep 2020
* Author: mike
*/
#ifndef INC_NMEA_H_
#define INC_NMEA_H_
#include <ctype.h>
#if !defined true
#define true 1
#define false !(true)
#endif
typedef unsigned char bool;
typedef struct
{
char valid;
char ew;
char ns;
float lat;
float lon;
float heading;
float speed;
} Location;
extern uint8_t
updateLocation (Location *loc);
#endif /* INC_NMEA_H_ */