Skip to content

Commit 14f994d

Browse files
authored
Merge pull request #157 from sparkfun/release_candidate
v2.1 Release
2 parents afb5603 + 80acdd0 commit 14f994d

27 files changed

+3664
-1811
lines changed
1.88 MB
Binary file not shown.
0 Bytes
Binary file not shown.

Firmware/RTK_Surveyor/AP-Config/index.html

Lines changed: 389 additions & 142 deletions
Large diffs are not rendered by default.

Firmware/RTK_Surveyor/AP-Config/src/main.js

Lines changed: 204 additions & 145 deletions
Large diffs are not rendered by default.

Firmware/RTK_Surveyor/Begin.ino

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -351,29 +351,6 @@ void beginFS()
351351
}
352352
}
353353

354-
void beginDisplay()
355-
{
356-
if (oled.begin() == true)
357-
{
358-
online.display = true;
359-
360-
Serial.println(F("Display started"));
361-
displaySplash();
362-
splashStart = millis();
363-
}
364-
else
365-
{
366-
if (productVariant == RTK_SURVEYOR)
367-
{
368-
Serial.println(F("Display not detected"));
369-
}
370-
else if (productVariant == RTK_EXPRESS || productVariant == RTK_EXPRESS_PLUS || productVariant == RTK_FACET || productVariant == RTK_FACET_LBAND)
371-
{
372-
Serial.println(F("Display Error: Not detected."));
373-
}
374-
}
375-
}
376-
377354
//Connect to ZED module and identify particulars
378355
void beginGNSS()
379356
{
@@ -436,7 +413,7 @@ void beginGNSS()
436413
Serial.printf("Unknown ZED module: %s\n\r", i2cGNSS.minfo.extension[3]);
437414
zedModuleType = PLATFORM_F9P;
438415
}
439-
416+
440417
printModuleInfo(); //Print module type and firmware version
441418
}
442419

@@ -612,6 +589,8 @@ void beginSystemState()
612589
}
613590

614591
firstRoverStart = true; //Allow user to enter test screen during first rover start
592+
if (systemState == STATE_BASE_NOT_STARTED)
593+
firstRoverStart = false;
615594

616595
powerBtn = new Button(pin_powerSenseAndControl); //Create the button in memory
617596
}

0 commit comments

Comments
 (0)