Skip to content

Commit d411c72

Browse files
committed
Fix small typo and previous system state setting bug.
1 parent ad8b098 commit d411c72

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Firmware/RTK_Surveyor/menuDebug.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ void menuDebug()
3737
Serial.print(F("6) Set SPP TX Buffer Size: "));
3838
Serial.println(settings.sppTxQueueSize);
3939

40-
Serial.print(F("7) Throttle During SPP Congestion: "));
40+
Serial.print(F("7) Throttle BT Transmissions During SPP Congestion: "));
4141
if (settings.throttleDuringSPPCongestion == true) Serial.println(F("Enabled"));
4242
else Serial.println(F("Disabled"));
4343

Firmware/RTK_Surveyor/settings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ struct struct_settings {
283283
uint16_t sppRxQueueSize = 2048;
284284
uint16_t sppTxQueueSize = 512;
285285
uint8_t dynamicModel = DYN_MODEL_PORTABLE;
286-
SystemState lastState = STATE_ROVER_NO_FIX; //For Express, start unit in state prior to powerdown
286+
SystemState lastState = STATE_ROVER_NOT_STARTED; //For Express, start unit in last known state
287287
bool throttleDuringSPPCongestion = true;
288288
} settings;
289289

0 commit comments

Comments
 (0)