Skip to content

Commit d828a8a

Browse files
committed
Add description for raw GPS data.
1 parent aea1eb7 commit d828a8a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

decode_aprs.c

+2
Original file line numberDiff line numberDiff line change
@@ -927,6 +927,7 @@ static void aprs_raw_nmea (decode_aprs_t *A, unsigned char *info, int ilen)
927927

928928
(void) dwgpsnmea_gprmc ((char*)info, A->g_quiet, &(A->g_lat), &(A->g_lon), &speed_knots, &(A->g_course));
929929
A->g_speed_mph = DW_KNOTS_TO_MPH(speed_knots);
930+
strlcpy (A->g_msg_type, "Raw GPS data", sizeof(A->g_msg_type));
930931
}
931932
else if (strncmp((char*)info, "$GPGGA,", 7) == 0 ||
932933
strncmp((char*)info, "$GNGGA,", 7) == 0)
@@ -936,6 +937,7 @@ static void aprs_raw_nmea (decode_aprs_t *A, unsigned char *info, int ilen)
936937

937938
(void) dwgpsnmea_gpgga ((char*)info, A->g_quiet, &(A->g_lat), &(A->g_lon), &alt_meters, &num_sat);
938939
A->g_altitude_ft = DW_METERS_TO_FEET(alt_meters);
940+
strlcpy (A->g_msg_type, "Raw GPS data", sizeof(A->g_msg_type));
939941
}
940942

941943
// TODO (low): add a few other sentence types.

0 commit comments

Comments
 (0)