Skip to content

Commit 1566241

Browse files
authored
Update Example7_LBand_Corrections_over_Serial.ino
GNSS + Dead Reckoning is FixType 4, not FixType 3.
1 parent 3f32a24 commit 1566241

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/NEO-D9S_and_NEO-D9C/Example7_LBand_Corrections_over_Serial/Example7_LBand_Corrections_over_Serial.ino

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

0 commit comments

Comments
 (0)