We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fd46cc commit 9d5191dCopy full SHA for 9d5191d
Utils/UBX_Integrity_Checker.py
@@ -108,11 +108,11 @@ def crc24q(byte, sum):
108
repairFilename = filename + '.repair'
109
110
# Ask user if GNTXT is to be printed
111
-response = input('Do you want to print any GNTXT messages found? (y/N): ') # Get the response
112
-if (response == '') or (response == 'N') or (response == 'n'):
113
- printGNTXT = False
114
-else:
115
- printGNTXT = True
+printGNTXT = False
+if containsNMEA == True:
+ response = input('Do you want to print any GNTXT messages found? (y/N): ') # Get the response
+ if (response == 'Y') or (response == 'y'):
+ printGNTXT = True
116
117
print()
118
print('Processing',filename)
0 commit comments