Skip to content

Commit a19d8f7

Browse files
authored
Merge pull request #8 from sparkfun/release_candidate
v2.0 - release
2 parents 73524dc + 53fdbb1 commit a19d8f7

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

Firmware/GNSSDO_Firmware/Display.ino

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ void beginDisplay(TwoWire *i2cBus)
2222
return;
2323

2424
if (i2cBus == nullptr)
25-
reportFatalError("Illegal display i2cBus");
25+
{
26+
//reportFatalError("Illegal display i2cBus");
27+
systemPrintln("ERROR: Illegal display i2cBus! Failed to detect the display! Continuing...\r\n");
28+
return;
29+
}
2630

2731
uint8_t i2cAddress;
2832
uint16_t x;

Firmware/GNSSDO_Firmware/GNSSDO_Firmware.ino

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,15 @@
2222
1.2: Add support for SiT5811 and STP3593LF oscillators
2323
1.3: Enable Ethernet by default
2424
1.4: Include a soft reset to work around "Ready for SUF Download"
25-
1.5: Print an ERROR if the display is not detected, but allow firmware to continue
25+
1.5: Print an ERROR if the display is not initialized, but allow firmware to continue
2626
Print mosaic-T version, S/N, Ethernet MAC + IP in menuMain
2727
Store previousIP in NVM - updated once per hour
2828
Print oscillator type in menuMain
29+
2.0: Add support for the GNSSDO Plus (GNSSDO+)
30+
Add RX Clock Drift (RxClkDrift) reporting
31+
Allow extra time when copying the mosaic-T configuration
32+
Print an error if no TCXO / OCXO is detected, but allow firmware to continue
33+
Print an ERROR if the display is not detected on I2C, but allow firmware to continue
2934
*/
3035

3136
// This is passed in from compiler extra flags

0 commit comments

Comments
 (0)