You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Receiver: Ublox NEO M8N.
Controller: Bluefruit Sense nRF52840
Minimal code.py to reproduce:
from adafruit_gps import GPS
from board import UART
from time import sleep
gps = GPS(UART(), debug=True)
gps.send_command(b"PMTK220,1000")
sleep(1)
gps.send_command(b'PMTK314,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0')
print(adafruit_gps.__version__)
while True:
gps.update()
print(gps.has_fix)
sleep(0.1)
Sometimes I get soft reboot message.
Once in a while I get one of two errors:
File "adafruit_gps.py", line 302, in update
File "adafruit_gps.py", line 460, in _parse_gll
File "adafruit_gps.py", line 425, in _update_timestamp_utc
ValueError: invalid syntax for integer with base 10
File "adafruit_gps.py", line 304, in update
File "adafruit_gps.py", line 475, in _parse_rmc
File "adafruit_gps.py", line 181, in _parse_data
File "adafruit_gps.py", line 97, in _parse_degrees
IndexError: list index out of range
The text was updated successfully, but these errors were encountered:
Receiver: Ublox NEO M8N.
Controller: Bluefruit Sense nRF52840
Minimal
code.py
to reproduce:Sometimes I get soft reboot message.
Once in a while I get one of two errors:
File "adafruit_gps.py", line 302, in update
File "adafruit_gps.py", line 460, in _parse_gll
File "adafruit_gps.py", line 425, in _update_timestamp_utc
ValueError: invalid syntax for integer with base 10
File "adafruit_gps.py", line 304, in update
File "adafruit_gps.py", line 475, in _parse_rmc
File "adafruit_gps.py", line 181, in _parse_data
File "adafruit_gps.py", line 97, in _parse_degrees
IndexError: list index out of range
The text was updated successfully, but these errors were encountered: