Skip to content

Commit 5e1b486

Browse files
committed
Update NtripServer.ino
1 parent 68ec63a commit 5e1b486

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Firmware/RTK_Surveyor/NtripServer.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -473,15 +473,15 @@ void ntripServerUpdate()
473473
//Look for '401 Unauthorized'
474474
Serial.printf("NTRIP Caster responded with bad news: %s. Are you sure your caster credentials are correct?\n\r", response);
475475

476-
//Stop WiFi operations
476+
//Give up - Stop WiFi operations
477477
ntripServerStop(true); //Do not allocate new wifiClient
478478
}
479479
else if (strstr(response, "banned") != NULL) //'Banned' found
480480
{
481481
//Look for 'HTTP/1.1 200 OK' and banned IP information
482482
Serial.printf("NTRIP Server connected to caster but caster reponded with problem: %s", response);
483483

484-
//Stop WiFi operations
484+
//Give up - Stop WiFi operations
485485
ntripServerStop(true); //Do not allocate new wifiClient
486486
}
487487
else if (strstr(response, "200") == NULL) //'200' not found

0 commit comments

Comments
 (0)