From 3e99644b391f8123189be085254ae70332467716 Mon Sep 17 00:00:00 2001 From: Mark Jessop Date: Sat, 23 Nov 2024 08:49:10 +1030 Subject: [PATCH] Change init value of ublox dynamic model to be more unique --- tx/ublox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tx/ublox.py b/tx/ublox.py index fd52258..5802d59 100644 --- a/tx/ublox.py +++ b/tx/ublox.py @@ -948,7 +948,7 @@ class UBloxGPS(object): 'leapS': 0, # GPS Leap Seconds (Difference between GPS time and UTC time) 'timestamp': " ", # ISO-8601 Compliant Date-code (generate by Python's datetime.isoformat() function) 'datetime': datetime.datetime.utcnow(), # Fix time as a datetime object. - 'dynamic_model': 20 # Current dynamic model in use. + 'dynamic_model': 255 # Current dynamic model in use. } # Lock files for writing and reading to the internal state dictionary. state_writelock = False