Skip to content

Commit 900f937

Browse files
committed
Default UART buffers to 5k/5k
1 parent 7c534e6 commit 900f937

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Firmware/RTK_Surveyor/settings.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -523,8 +523,8 @@ typedef struct {
523523
uint16_t antennaHeight = 0; //in mm
524524
float antennaReferencePoint = 0.0; //in mm
525525
bool echoUserInput = true;
526-
int uartReceiveBufferSize = 1024 * 2; //This buffer is filled automatically as the UART receives characters.
527-
int gnssHandlerBufferSize = 1024 * 8; //This buffer is filled from the UART receive buffer, and is then written to SD
526+
int uartReceiveBufferSize = 1024 * 5; //This buffer is filled automatically as the UART receives characters.
527+
int gnssHandlerBufferSize = 1024 * 5; //This buffer is filled from the UART receive buffer, and is then written to SD
528528
bool enablePrintBufferOverrun = false;
529529
bool enablePrintSDBuffers = false;
530530
} Settings;

0 commit comments

Comments
 (0)