Skip to content

Commit 4ce4676

Browse files
authored
Merge pull request #765 from LeeLeahy2/rtcm-timeout
Increase the RTCM transmit timeout from 3 seconds to 15 seconds
2 parents 8bc7e1d + 8128cdc commit 4ce4676

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firmware/RTK_Surveyor/NtripServer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ void ntripServerUpdate()
757757
systemPrintln("Connection to NTRIP Caster was lost");
758758
ntripServerRestart();
759759
}
760-
else if ((millis() - ntripServerTimer) > (3 * 1000))
760+
else if ((millis() - ntripServerTimer) > (15 * 1000))
761761
{
762762
// GNSS stopped sending RTCM correction data
763763
systemPrintln("NTRIP Server breaking connection to caster due to lack of RTCM data!");

0 commit comments

Comments
 (0)