Hello Everyone,
I am using UBLOX Neo6mv2 GPS Module.
I recently interfaced the module with Arduino Successfully and I am able to extract the Lat/Long information perfectly fine.
Previously I was using an RTC module to time stamp all my data, but since that is inaccurate I want to use the GPS fix for time and date information.
I've ran into a dead end here. I used the following commands from this website: http://ukhas.org.uk/guides:ublox6
to disable all the NMEA sentences. And using the Serial.println("$PUBX,00*33"); command I am able to poll the GPS device for the information. I am unable to turn the NMEA sentences back on. I can't find any command online, even tried to read the protocol data sheet but it kinda went over my head.
The information I get when I poll the device does not contain the date, which I need for my time stamp, whereas the RMC NMEA sentence contains, date, time, lat, long information.
Basically, I want to know how to restore my device to default settings or turn back the NMEA sentences on periodically.
Here is the code used to turn them off:
Serial.println("$PUBX,40,GLL,0,0,0,0*5C");
Serial.println("$PUBX,40,GGA,0,0,0,0*5A");
Serial.println("$PUBX,40,GSA,0,0,0,0*4E");
Serial.println("$PUBX,40,RMC,0,0,0,0*47");
Serial.println("$PUBX,40,GSV,0,0,0,0*59");
Serial.println("$PUBX,40,VTG,0,0,0,0*5E");
Would really appreciate if someone could help me find the command to turn the sentences back on.
Thank You,