Skip to content

Commit 55c8893

Browse files
committed
Fix failing UART2 serial test
1 parent 04267b3 commit 55c8893

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Firmware/RTK_Surveyor/Display.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1543,8 +1543,8 @@ void paintSystemTest()
15431543

15441544
SFE_UBLOX_GNSS myGNSS;
15451545

1546-
//begin() attempts 3 connections with 20ms begin timeout
1547-
if (myGNSS.begin(serialGNSS, 20) == true)
1546+
//begin() attempts 3 connections
1547+
if (myGNSS.begin(serialGNSS) == true)
15481548
{
15491549
zedUartPassed = true;
15501550
oled.print(F("OK"));

Firmware/RTK_Surveyor/menuSystem.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ void menuSystem()
6464

6565
//begin() attempts 3 connections with X timeout per attempt
6666
SFE_UBLOX_GNSS myGNSS;
67-
if (myGNSS.begin(serialGNSS, 200) == true)
67+
if (myGNSS.begin(serialGNSS) == true)
6868
{
6969
zedUartPassed = true;
7070
Serial.print(F("BT Online"));

0 commit comments

Comments
 (0)