#ifndef LIBGPS_H #define LIBGPS_H #include #include "stdio.h" struct gps_data { char valid ; //trame valide float time ; //champ time de la trame float lat ; //champ latitude de la trame float lon ; //champ longitude de la trame unsigned char received_checksum; }; char parseGPS(char c, struct gps_data * ptr_gps_data) ; #endif // LIBGPS_H