summaryrefslogtreecommitdiff
path: root/ubxtool
diff options
context:
space:
mode:
Diffstat (limited to 'ubxtool')
-rwxr-xr-xubxtool4
1 files changed, 2 insertions, 2 deletions
diff --git a/ubxtool b/ubxtool
index bece5e7c..c14c93e4 100755
--- a/ubxtool
+++ b/ubxtool
@@ -1085,8 +1085,8 @@ class ubx(object):
if 8 > m_len:
return " Bad Length %s" % m_len
- u = struct.unpack_from('<LlhhBBBB', buf, 0)
- s = ' iTOW:%d ms weeks:%d numSV:%d' % u
+ u = struct.unpack_from('<lhBB', buf, 0)
+ s = ' iTOW:%d ms weeks:%d numSV:%u res1 %u' % u
m_len -= 8
i = 0