Skip to content

Commit 7c534e6

Browse files
committed
Add buffer overruns to debug display
1 parent e91da7b commit 7c534e6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Firmware/RTK_Surveyor/Display.ino

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2295,7 +2295,11 @@ void paintResets()
22952295
{
22962296
oled.setFont(QW_FONT_5X7); //Small font
22972297
oled.setCursor(16 + (8 * 3) + 7, 38); //x, y
2298-
oled.print(settings.resetCount);
2298+
2299+
if(settings.enablePrintBufferOverrun == false)
2300+
oled.print(settings.resetCount);
2301+
else
2302+
oled.print(settings.resetCount + bufferOverruns);
22992303
}
23002304
}
23012305

0 commit comments

Comments
 (0)