more clang

This commit is contained in:
Rick Sellens 2020-01-18 10:43:35 -05:00
parent c8d4e037e7
commit b982d8948e
1 changed files with 2 additions and 4 deletions

View File

@ -205,10 +205,8 @@ boolean Adafruit_GPS::parse(char *nmea) {
}
}
#ifdef NMEA_EXTENSIONS //********************************************Sentences
//not required for basic GPS functionality
else if (!strcmp(thisSentence,
"TXT")) { //********************************************TXT
#ifdef NMEA_EXTENSIONS // Sentences not required for basic GPS functionality
else if (!strcmp(thisSentence,"TXT")) { //*******************************TXT
if (!isEmpty(p))
txtTot = atoi(p);
p = strchr(p, ',') + 1;