danalvarez

Results 16 comments of danalvarez

Hi, @brocaar, any update on this? Would be extremely useful for our application, mainly to be able to manually configure TX Power. Thanks in advance :)

Do you have `#define GPS_FIX_HDOP` enabled in `GPSfix_cfg.h`? I think that must be enabled to be accessible via the fix structure, as the `GPSfix_cfg.h` states: ``` * Disabling a member...

I personally feel it's one of the best GPS libraries out there. Yes, configuration can be difficult, took me a while to understand what had to be configured and what...

A couple things: 1. If the fix is not valid, you shouldn't trust the information provided by calls to `lat()`, `lon()` and the likes. I am not sure what happens...

I think you need to check if the data is valid as shown in `NMEAsimple.ino`: ``` while (gps.available( gpsPort )) { fix = gps.read(); DEBUG_PORT.print( F("Location: ") ); if (fix.valid.location)...

I would rather use `fix.status` to check how strong the fix is. `STATUS_DGPS` seems to be the highest possible, although I've gotten decent precision with `STATUS_STD`. More info here: https://github.com/SlashDevin/NeoGPS/blob/master/extras/doc/Data%20Model.md...

@jpmeijers Thank you for testing this. Indeed, the library's default `modemType` is `TTN_MODEM_TYPE_RN`. This will make several of the function calls fail if you are using SAMR34. You must first...

Hello @jpmeijers , do you think you might have a chance to test this? I've addressed your change requests. :)

Would be tremendously useful to be able to go back to previous question. Looking forward to this possible enhancement!