I'm not sure the Adafruit_GPS library is supported on the Teensy... it does not appear in the list of libraries that can be installed with the Teensy board package for the IDE.
The major problem...
Type: Posts; User: /dev
I'm not sure the Adafruit_GPS library is supported on the Teensy... it does not appear in the list of libraries that can be installed with the Teensy board package for the IDE.
The major problem...
Thanks for the kind words!
To be clear, NeoGPS is fully operational on the Teensy. Just feed it characters from your favorite source: serial port, I2C, static array, whatever.
NeoHWSerial is...
With a little more information, I determined it was an out-of-date header copy in the repo that did not have the guard.
Thanks for checking,
/dev
I got a bug report that seems to indicate that __AVR__ is defined for the Teensy 3.2 builds. This define is not guarded:
#ifdef __AVR__
#define NEOGPS_PACKED_DATA
#endif
A build for the...