Skip to content

Commit e1979e9

Browse files
authored
Fix Type in Example17_NTRIPClient_With_GGA_Callback.ino
GNSS + Dead Reckoning is Fix Type 4, not Fix Type 3. See page 104 of https://content.u-blox.com/sites/default/files/documents/u-blox-F9-HPG-1.32_InterfaceDescription_UBX-22008968.pdf
1 parent 746ad2b commit e1979e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/ZED-F9P/Example17_NTRIPClient_With_GGA_Callback/Example17_NTRIPClient_With_GGA_Callback.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ void printPVTdata(UBX_NAV_PVT_data_t *ubxDataStruct)
115115
Serial.print(F(" (2D)"));
116116
else if (fixType == 3)
117117
Serial.print(F(" (3D)"));
118-
else if (fixType == 3)
118+
else if (fixType == 4)
119119
Serial.print(F(" (GNSS + Dead Reckoning)"));
120120
else if (fixType == 5)
121121
Serial.print(F(" (Time Only)"));

0 commit comments

Comments
 (0)