help regarding parallax gps module
:D
Posts: 1
i am trying to parse gps data from the gprmc string
$GPRMC,225446,A,4916.45,N,12311.12,W,000.5,054.7,191194,020.3,E*68
with the following serin command
where gpstime is byte array of 6 bytes, latitude of 7 bytes, and longitude of 8 bytes.
i am still not able to get the data parsed as required
help would be appreciated
$GPRMC,225446,A,4916.45,N,12311.12,W,000.5,054.7,191194,020.3,E*68
with the following serin command
SERIN 14,188,2000,NOGPS1,[noparse][[/noparse]WAIT("RMC,"), STR gpstime\6,SKIP 3, STR latitude\7, SKIP 3,STR longitude\8]
where gpstime is byte array of 6 bytes, latitude of 7 bytes, and longitude of 8 bytes.
i am still not able to get the data parsed as required
help would be appreciated
Comments
rick