adafruit / Adafruit_CircuitPython_GPS

GPS parsing module for CircuitPython. Meant to parse NMEA data from serial GPS modules.
MIT License
75 stars 58 forks source link

Typo in NMEA sentence checking #44

Closed digixx closed 4 years ago

digixx commented 4 years ago

Hi,

in adafruit_gps.py, line 142 if data_type in ( b"GPGLL", b"GNGGL", ):

GNGGL should be GNGLL?

Kind regards from Switzerland

evaherrada commented 4 years ago

@digixx Yep, looks like you're right. Feel free to put in a PR fixing this, or, if youd prefer, I can.

digixx commented 4 years ago

@dherrada if you can do it, that would be fine.

evaherrada commented 4 years ago

Fixed by #45