one more question you may be able to help me with. Currently the venus http://www.sparkfun.com/products/9133
outputs NMEA data with timestamps like this:
$GPGGA,193012.133,5023.2654,N,00354.4738,W,1,06,3.9,192.0,M,53.2,M,0000*4E
$GPRMC,193012.133,A,5023.2654,N,00354.4738,W,0002.2,178.2,080411,A*4E
$GPGGA,193012.233,5023.2653,N,00354.4742,W,1,06,3.9,209.0,M,53.2,M,0000*46
$GPRMC,193012.233,A,5023.2653,N,00354.4742,W,0002.0,172.9,080411,A*44
$GPGGA,193012.333,5023.2653,N,00354.4744,W,1,06,3.9,222.7,M,53.2,M,0000*4F
…
$GPGGA,193827.695,5024.1629,N,00351.5961,W,2,09,1.8,153.2,M,53.2,M,0000*43
$GPRMC,193827.695,A,5024.1629,N,00351.5961,W,0055.2,239.3,080411,D*43
$GPGGA,193827.795,5024.1621,N,00351.5981,W,2,09,1.8,153.2,M,53.2,M,0000*44
$GPRMC,193827.795,A,5024.1621,N,00351.5981,W,0054.6,239.2,080411,D*40
$GPGGA,193827.895,5024.1614,N,00351.6002,W,2,09,1.8,153.1,M,53.2,M,0000*4F
as you can see the time stamp milliseconds move from .x33 to .x95
is it possible to sync the nmea output data to the millisecond so it
would look like this example:
$GPGGA,193827.600,5024.1629,N,00351.5961,W,2,09,1.8,153.2,M,53.2,M,0000*43
$GPRMC,193827.600,A,5024.1629,N,00351.5961,W,0055.2,239.3,080411,D*43
$GPGGA,193827.700,5024.1621,N,00351.5981,W,2,09,1.8,153.2,M,53.2,M,0000*44
$GPRMC,193827.700,A,5024.1621,N,00351.5981,W,0054.6,239.2,080411,D*40
$GPGGA,193827.800,5024.1614,N,00351.6002,W,2,09,1.8,153.1,M,53.2,M,0000*4F
$GPRMC,193827.800,A,5024.1614,N,00351.6002,W,0054.8,239.2,080411,D*46
$GPGGA,193827.900,5024.1606,N,00351.6023,W,2,09,1.8,153.1,M,53.2,M,0000*4E
$GPRMC,193827.900,A,5024.1606,N,00351.6023,W,0055.3,239.1,080411,D*4E
so all data would export on the 1/10th of a second exactly?
Thanks again