mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-11 19:24:10 +01:00
11 lines
201 B
C
11 lines
201 B
C
|
#ifndef NMEA_H
|
||
|
#define NMEA_H
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
extern bool NMEA_update_position (char * nmea_sentence);
|
||
|
extern bool NMEA_checksum (char * nmea_sentence);
|
||
|
|
||
|
#endif /* NMEA_H */
|