On 01/28/2011 07:08 PM, Martin Hauke wrote:
i've had the same issue. Use the attached patch to read the required data from the $GPGGA NMEA sentence.
- Martin
Good, but why did you change the old code? Why don't you put something like
if (strcmp("$GPGLL") { // run the old code } else if(strcmp("$GPGGA)) { // run your new code } else { return; }
That could support both the devices.