30 lines
504 B
C
30 lines
504 B
C
/*
|
|
* 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])),
|
|
|
|
},
|
|
|
|
};
|
|
|