Skip to content

Commit 3cc8960

Browse files
authored
Update Example3_LBand_Corrections_with_NEO-D9S_using_SPI.ino
GNSS + Dead Reckoning is FixType 4, not FixType 3.
1 parent 3d18d24 commit 3cc8960

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/NEO-D9S_and_NEO-D9C/Example3_LBand_Corrections_with_NEO-D9S_using_SPI/Example3_LBand_Corrections_with_NEO-D9S_using_SPI.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ void printPVTdata(UBX_NAV_PVT_data_t *ubxDataStruct)
100100
Serial.print(F(" (2D)"));
101101
else if (fixType == 3)
102102
Serial.print(F(" (3D)"));
103-
else if (fixType == 3)
103+
else if (fixType == 4)
104104
Serial.print(F(" (GNSS + Dead Reckoning)"));
105105
else if (fixType == 5)
106106
Serial.print(F(" (Time Only)"));

0 commit comments

Comments
 (0)