Skip to content

Commit b87de12

Browse files
committed
Auto report ESF Status data.
1 parent 569cecd commit b87de12

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

Firmware/RTK_Surveyor/Display.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,6 @@ void paintBaseState()
329329
else if (zedModuleType == PLATFORM_F9R)
330330
{
331331
//Blink fusion rover until we have calibration
332-
i2cGNSS.getEsfInfo(); // Poll new ESF STATUS data
333332
if (i2cGNSS.packetUBXESFSTATUS->data.fusionMode == 0) //Initializing
334333
{
335334
//Blink Fusion Rover icon until sensor calibration is complete

Firmware/RTK_Surveyor/RTK_Surveyor.ino

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,10 @@ void updateLogs()
487487
logIncreasing = true;
488488
}
489489
else
490+
{
491+
ESP_LOGD(TAG, "Log file: No increase in file size");
490492
logIncreasing = false;
493+
}
491494
}
492495
}
493496
}

Firmware/RTK_Surveyor/System.ino

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,11 @@ bool configureUbloxModule()
223223
response &= i2cGNSS.setAutoPVT(true, false); //Tell the GPS to "send" each solution, but do not update stale data when accessed
224224
response &= i2cGNSS.setAutoHPPOSLLH(true, false); //Tell the GPS to "send" each high res solution, but do not update stale data when accessed
225225

226+
if (zedModuleType == PLATFORM_F9R)
227+
{
228+
response &= i2cGNSS.setAutoESFSTATUS(true, false); //Tell the GPS to "send" each ESF Status, but do not update stale data when accessed
229+
}
230+
226231
if (getSerialRate(COM_PORT_UART1) != settings.dataPortBaud)
227232
{
228233
Serial.println(F("Updating UART1 rate"));

0 commit comments

Comments
 (0)