bzroom

Results 8 comments of bzroom

try this: //NeoGPS::Location_t base( -253448688L, 1310324914L ); // Ayers Rock, AU NeoGPS::Location_t base; base._lat = -253448688L; base._lon =1310324914L; // Ayers Rock, AU Or this: NeoGPS::Location_t base( (int32_t)-253448688L, (int32_t)1310324914L ); //...

You need to put those lines in a function, maybe setup() function. Cannot put code outside of a function. On Sun, Aug 2, 2020, 1:04 AM mccgregory wrote: > HI,...

Post your whole code On Sun, Aug 2, 2020, 3:13 AM mccgregory wrote: > Sorry, I’m a bit dim, and again thanks for your rapid feedback. > > I don’t...

Can you figure out how not to copy the whole thread every time you reply? You need to put code inside a function. Ask a c++ programmer. You being dim...

just use this one. FFS i gave you 2 examples: NeoGPS::Location_t base( (int32_t)-253448688L, (int32_t)1310324914L ); // Ayers Rock, AU

Hi, I'm having the same issue. The HelloWorld docking example very frequently results in a corrupt frozen window with GLFW/OGL3. Can you please let me know the latest work around?...

I was able to workaround my issue (so far, so good), by following the directions here https://github.com/h2qutc/angular-material-components/issues/182 and using "useClass" to instantiate a unique format provider per component instance. Then...

Thank you both for the suggestions! I 50% understood Ben's suggestion and implemented something lazier because I can currently accept the 0 being in the center: ``` // adjust plot...