Skip to content

Commit c8a3489

Browse files
committed
Merge branch 'release_candidate' of https://github.com/sparkfun/SparkFun_RTK_Everywhere_Firmware into release_candidate
2 parents fbb1805 + d07cebf commit c8a3489

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Firmware/RTK_Everywhere/NtripServer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ void ntripServerProcessRTCM(int serverIndex, uint8_t incoming)
397397
ntripServer->bytesSent = 0;
398398
}
399399

400-
if (ntripServer->networkClient->connected())
400+
if (ntripServer->networkClient && ntripServer->networkClient->connected())
401401
{
402402
ntripServer->networkClient->write(incoming); // Send this byte to socket
403403
ntripServer->bytesSent++;

Firmware/RTK_Everywhere/RTK_Everywhere.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ unsigned long lastRockerSwitchChange; // If quick toggle is detected (less than
556556

557557
// Because the incoming string is longer than max len, there are multiple callbacks so we
558558
// use a global to combine the incoming
559-
#define AP_CONFIG_SETTING_SIZE 10000
559+
#define AP_CONFIG_SETTING_SIZE 20000 // 10000 isn't enough if the SD card contains many files
560560
char *settingsCSV; // Push large array onto heap
561561
char *incomingSettings;
562562
int incomingSettingsSpot;

0 commit comments

Comments
 (0)