Skip to content

Commit 0723278

Browse files
authored
Update Example18_PointPerfectClient.ino
Fix type GNSS + Dead Reckoning is fixType 4
1 parent 43bff33 commit 0723278

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/ZED-F9P/Example18_PointPerfectClient/Example18_PointPerfectClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ void printPVTdata(UBX_NAV_PVT_data_t *ubxDataStruct)
8787
Serial.print(F(" (2D)"));
8888
else if (fixType == 3)
8989
Serial.print(F(" (3D)"));
90-
else if (fixType == 3)
90+
else if (fixType == 4)
9191
Serial.print(F(" (GNSS + Dead Reckoning)"));
9292
else if (fixType == 5)
9393
Serial.print(F(" (Time Only)"));

0 commit comments

Comments
 (0)