Page 1 of 1

NO GPS Data

Posted: Thu Aug 02, 2018 3:09 am
by Girish
I am able to read the OBD data but I cannot see any GPS data. While debugging I can see that the code stops for GPS data at this point in processGPS
method

if (!sys.gpsGetData(&gd) || gd.date == 0) {
return;
}

Am I missing Something?

Re: NO GPS Data

Posted: Tue Aug 07, 2018 12:30 pm
by stanley
Make sure you expose the GPS receiver to open sky while testing.

Re: NO GPS Data

Posted: Tue Aug 07, 2018 11:52 pm
by Girish
Thanks. It worked :|