Cast gpstimeofweek to int

old-commit-hash: d4886b2c2995db88d9bc9f7d7cf3f7cb9def5b12
This commit is contained in:
Gijs Koning
2022-06-16 19:41:51 +02:00
parent c0abd08f13
commit fc062222d4
+1 -1
View File
@@ -201,7 +201,7 @@ def create_measurement_msg(meas: GNSSMeasurement):
c.ephemerisSource.type = source_type.value
c.ephemerisSource.gpsWeek = week
c.ephemerisSource.gpsTimeOfWeek = time_of_week
c.ephemerisSource.gpsTimeOfWeek = int(time_of_week)
return c