Skip to content

Commit 0011f99

Browse files
committed
Move idleTask start after settings are loaded
1 parent ccd25d6 commit 0011f99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Firmware/RTK_Surveyor/RTK_Surveyor.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -534,8 +534,6 @@ void setup()
534534
{
535535
Serial.begin(115200); //UART0 for programming and debugging
536536

537-
beginIdleTasks(); //Enable processor load calculations
538-
539537
beginI2C();
540538

541539
beginDisplay(); //Start display first to be able to display any errors
@@ -554,6 +552,8 @@ void setup()
554552

555553
loadSettings(); //Attempt to load settings after SD is started so we can read the settings file if available
556554

555+
beginIdleTasks(); //Enable processor load calculations
556+
557557
beginUART2(); //Start UART2 on core 0, used to receive serial from ZED and pass out over SPP
558558

559559
beginFuelGauge(); //Configure battery fuel guage monitor

0 commit comments

Comments
 (0)