Skip to content

Commit 3e9a617

Browse files
committed
Increase serial timeout on UART2 to allow for main loop logging at higher (>4Hz) fix rates.
1 parent eb3005e commit 3e9a617

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firmware/RTK_Surveyor/tasks.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ void startUART2Task( void *pvParameters )
6565
{
6666
serialGNSS.begin(115200); //UART2 on pins 16/17 for SPP. The ZED-F9P will be configured to output NMEA over its UART1 at 115200bps.
6767
serialGNSS.setRxBufferSize(SERIAL_SIZE_RX);
68-
serialGNSS.setTimeout(1);
68+
serialGNSS.setTimeout(50);
6969

7070
uart2Started = true;
7171

0 commit comments

Comments
 (0)