Question
Parsing GPS Messages ???
Dear Member,
I want to parse GGA,GSV,ZDA,VTG,RMC,GLL,
is my container not enough ?
Sometimes I can parse it sometimes I miss
......?
line_buffer[2048];
uint8_t rxBuffer[768];
str=strstr((char*)GPS.rxBuffer,"$GPGSV,");
ProcessNMEALine(str); //parse GPGSV Line 81
HAL_Delay(100);
str=strstr((char*)GPS.rxBuffer,"$GPZDA,");
ProcessNMEALine(str); //parse GPZDA Line 81
