Skip to content

Commit 64a4a69

Browse files
authored
Update Example5_QZSSL6_Corrections_with_NEO-D9C.ino
GNSS + Dead Reckoning is FixType 4, not FixType 3.
1 parent 0924295 commit 64a4a69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ void printPVTdata(UBX_NAV_PVT_data_t *ubxDataStruct)
126126
Serial.print(F(" (2D)"));
127127
else if (fixType == 3)
128128
Serial.print(F(" (3D)"));
129-
else if (fixType == 3)
129+
else if (fixType == 4)
130130
Serial.print(F(" (GNSS + Dead Reckoning)"));
131131
else if (fixType == 5)
132132
Serial.print(F(" (Time Only)"));

0 commit comments

Comments
 (0)