last commit before gitea mirror

This commit is contained in:
2025-09-13 08:44:35 +02:00
parent 97ea1d0ec4
commit 1418a064a9
4 changed files with 257 additions and 44 deletions

29
GPGxx_defines.c Normal file
View File

@@ -0,0 +1,29 @@
/*
* GPGxx_defines.c
*
* Created on: 27 Jun 2025
* Author: Christian Lind Vie Madsen
*/
#include "GPGxx_defines.h"
nmea_field_type gpgll_type[5] = {
NMEA_FIELD_INT32_T,
NMEA_FIELD_CHAR_T,
NMEA_FIELD_INT32_T,
NMEA_FIELD_CHAR_T,
NMEA_FIELD_UINT32_T,
};
nmea_field_desc_t nmea_sentences [1] = {
{
.nmea_sentence = "$GPGLL",
.nmea_sentence_type = NMEA_MSG_GPGLL,
.field_type = gpgll_type,
.field_type_size = (sizeof(gpgll_type) / sizeof(gpgll_type[0])),
},
};