Skip to content

Commit 0924295

Browse files
authored
Update Example6_PMP_with_L-Band_Keys_via_MQTT.ino
GNSS + Dead Reckoning is FixType 4, not FixType 3.
1 parent 1566241 commit 0924295

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/NEO-D9S_and_NEO-D9C/Example6_PMP_with_L-Band_Keys_via_MQTT/Example6_PMP_with_L-Band_Keys_via_MQTT.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ void printPVTdata(UBX_NAV_PVT_data_t *ubxDataStruct)
132132
Serial.print(F(" (2D)"));
133133
else if (fixType == 3)
134134
Serial.print(F(" (3D)"));
135-
else if (fixType == 3)
135+
else if (fixType == 4)
136136
Serial.print(F(" (GNSS + Dead Reckoning)"));
137137
else if (fixType == 5)
138138
Serial.print(F(" (Time Only)"));

0 commit comments

Comments
 (0)