Skip to content

Commit d530067

Browse files
authored
Merge pull request #277 from LeeLeahy2/rtcm-timeout
Increase NTRIP server no RTCM data timeout from 1 second to 3 seconds
2 parents fe7205c + d5dcdca commit d530067

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
@@ -581,7 +581,7 @@ void ntripServerUpdate()
581581
Serial.println("NTRIP Server connection dropped");
582582
ntripServerStop(false); //Allocate new wifiClient
583583
}
584-
else if ((millis() - ntripServerTimer) > 1000)
584+
else if ((millis() - ntripServerTimer) > (3 * 1000))
585585
{
586586
//GNSS stopped sending RTCM correction data
587587
Serial.println("NTRIP Server breaking caster connection due to lack of RTCM data!");

0 commit comments

Comments
 (0)