some work done, but i need to test it in a regular C program..

This commit is contained in:
Christian Lind Vie Madsen
2025-06-26 14:59:50 +02:00
parent af8c1d5363
commit e1d6b6d52b
2 changed files with 41 additions and 1 deletions

View File

@@ -10,6 +10,11 @@
#include <stdio.h>
#include <stdint.h>
typedef enum {
NMEA_MSG_GPGLL = 0,
}nmea_msg_type;
typedef struct{
uint8_t deg; // Degrees: 090 (latitude) or 0180 (longitude)
@@ -38,7 +43,7 @@ typedef struct {
cm_nmea_gpgll_msg gpgll_msg;
};
}cm_nmea_msg;
}cm_nmea_msg_t;