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
timestamp expects the time to have exactly 6 digits e.g. 112233 which makes
11 hours
22 minutes
33 seconds.
But gps receivers like u-blox send the time in the format containing milliseconds: 112233.44 which would be translated to
11 hours
22 minutes
44 seconds instead of 33 seconds
The functions should not take the last two digits as seconds asuming that the string is 6 digits long!
Please include milliseconds in your algorithm and check for both formats: 6 digits and 9 digits!
The text was updated successfully, but these errors were encountered:
@fabdrol
I changed the project and don‘t have the required hardware available. But you can simply modify an nmea sentence manually by adding a delimiter and two digits tonyour existing timestamp: e.g. append .12
timestamp expects the time to have exactly 6 digits e.g. 112233 which makes
11 hours
22 minutes
33 seconds.
But gps receivers like u-blox send the time in the format containing milliseconds: 112233.44 which would be translated to
11 hours
22 minutes
44 seconds instead of 33 seconds
The functions should not take the last two digits as seconds asuming that the string is 6 digits long!
Please include milliseconds in your algorithm and check for both formats: 6 digits and 9 digits!
The text was updated successfully, but these errors were encountered: