summaryrefslogtreecommitdiff
path: root/ubxtool
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2019-05-06 20:28:38 -0700
committerGary E. Miller <gem@rellim.com>2019-05-06 20:28:38 -0700
commite1a8a36e8cbae578128d2fb44d5c2369252d0458 (patch)
treef5e25391c412f31aab1fa9158ebf6203fe30bee6 /ubxtool
parentce7f8d44c540f6e69da2906f13e49ee0cac2d4bf (diff)
downloadgpsd-e1a8a36e8cbae578128d2fb44d5c2369252d0458.tar.gz
ubxtool: Typo fix: gnssID -> gnssId
Diffstat (limited to 'ubxtool')
-rwxr-xr-xubxtool6
1 files changed, 3 insertions, 3 deletions
diff --git a/ubxtool b/ubxtool
index 34dbeec8..c178aba0 100755
--- a/ubxtool
+++ b/ubxtool
@@ -2635,7 +2635,7 @@ class ubx(object):
i = 0
while i < numSigs:
u = struct.unpack_from('<BBBBhBBBBHL', buf, 8 + (i * 16))
- s += ('\n gnssID %u svId %u sigId %u freqId %u prRes %d cno %u '
+ s += ('\n gnssId %u svId %u sigId %u freqId %u prRes %d cno %u '
'qualityInd %u\n'
' corrSource %u ionoModel %u sigFlags %#x reserved2 %u' %
u)
@@ -3017,7 +3017,7 @@ class ubx(object):
i = 0
while 0 < m_len:
u = struct.unpack_from('<BBBBllHHLBBH', buf, 44 + i * 24)
- s += ('\n gnssID %u svId %u cNo %u mpathIndic %u DopplerMS %d\n'
+ s += ('\n gnssId %u svId %u cNo %u mpathIndic %u DopplerMS %d\n'
' dopplerHz %d wholeChips %u fracChips %u codephase %u\n'
' intCodePhase %u pseudoRangeRMSErr %u reserved5 %u' % u)
m_len -= 24
@@ -3073,7 +3073,7 @@ class ubx(object):
while 0 < m_len:
u = struct.unpack_from('<ddfBBBBHBBBBB', buf, 16 + i * 32)
s += ('\n prmes %.3f cpMes %.3f doMes %f\n'
- ' gnssID %u svId %u sigId %u freqId %u locktime %u cno %u\n'
+ ' gnssId %u svId %u sigId %u freqId %u locktime %u cno %u\n'
' prStdev %u, cpStdev %u doStdev %u trkStat %u' % u)
m_len -= 32
i += 1