Where do you find information how to select specific information from the GPS data like GPS.hour, GPS.latitude, GPS.altitude.
Any guids out there to show me this?
Like:
Using that, you can split a string into pieces, delimited by a character (in the case of a GPS, the character you want to split it on is a comma).
The problem with using strtok() to parse a comma-delimited string is that strtok() expects something to be between each pair of commas. The GPS will output two (or more) commas when there is no value to go between them. strtok() has real problems with