Skip to content

Commit 43bff33

Browse files
authored
Update Example17_NTRIPClient_With_GGA_Callback__Serial.ino
Fix type GNSS + Dead Reckoning is fixType 4
1 parent e1979e9 commit 43bff33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/ZED-F9P/Example17_NTRIPClient_With_GGA_Callback__Serial/Example17_NTRIPClient_With_GGA_Callback__Serial.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ void printPVTdata(UBX_NAV_PVT_data_t *ubxDataStruct)
120120
Serial.print(F(" (2D)"));
121121
else if (fixType == 3)
122122
Serial.print(F(" (3D)"));
123-
else if (fixType == 3)
123+
else if (fixType == 4)
124124
Serial.print(F(" (GNSS + Dead Reckoning)"));
125125
else if (fixType == 5)
126126
Serial.print(F(" (Time Only)"));

0 commit comments

Comments
 (0)