mccgregory
mccgregory
The Latitude and Longitude in NMEAdistance are specified as LONG i.e. ( -253448688L, 1310324914L ) But in **Location.h**, **Location_t** is expecting two DOUBLEs. here: Location_t( double lat, double lon )...
HI, thanks for your time. Fails with: NMEAdistance:56:1: error: 'base' does not name a type base._lat = -253448688L; NMEAdistance:57:1: error: 'base' does not name a type base._lon = 1310324914L; //...
Sorry, I’m a bit dim, and again thanks for your rapid feedback. I don’t really understand… You commented on the code, suggesting I try this: showing the original line commented...
😊 My whole code is the NMEAdistance code. At this stage I’m trying NeoGPS out, learning what I can and can’t do. It is a mini project in a bigger...
Thanks again. just use this one. FFS i gave you 2 examples: NeoGPS::Location_t base( (int32_t)-253448688L, (int32_t)1310324914L ); // Ayers Rock, AU Sorry, the thread shows you gave me one example,...