We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f520755 commit a3d1632Copy full SHA for a3d1632
Firmware/RTK_Surveyor/NtripServer.ino
@@ -497,6 +497,9 @@ void ntripServerUpdate()
497
if (ntripServerConnectLimitReached())
498
{
499
systemPrintln("Caster failed to respond. Do you have your caster address and port correct?");
500
+
501
+ // Give up - Shutdown NTRIP server, no further retries
502
+ ntripServerStop(true);
503
}
504
else
505
@@ -506,6 +509,9 @@ void ntripServerUpdate()
506
509
507
510
systemPrintf("NTRIP caster failed to respond. Trying again in %d minutes.\r\n",
508
511
ntripServerConnectionAttemptTimeout / 1000 / 60);
512
513
+ // Restart network operation after delay
514
+ ntripServerStop(false);
515
516
517
0 commit comments