Skip to content

Commit 3d18d24

Browse files
authored
Update Example2_LBand_Corrections_with_NEO-D9S.ino
GNSS + Dead Reckoning is FixType 4, not FixType 3.
1 parent 64a4a69 commit 3d18d24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/NEO-D9S_and_NEO-D9C/Example2_LBand_Corrections_with_NEO-D9S/Example2_LBand_Corrections_with_NEO-D9S.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ void printPVTdata(UBX_NAV_PVT_data_t *ubxDataStruct)
108108
Serial.print(F(" (2D)"));
109109
else if (fixType == 3)
110110
Serial.print(F(" (3D)"));
111-
else if (fixType == 3)
111+
else if (fixType == 4)
112112
Serial.print(F(" (GNSS + Dead Reckoning)"));
113113
else if (fixType == 5)
114114
Serial.print(F(" (Time Only)"));

0 commit comments

Comments
 (0)