fix: correct XIAO RS485 UART pin mapping
This commit is contained in:
@@ -687,6 +687,12 @@ static void update_diagnostics_overlay()
|
||||
text += String(sensor_node.framesDropped);
|
||||
text += "/";
|
||||
text += String(sensor_node.parseErrors + sensor_node.oversizedFrames);
|
||||
text += "\n Raw bytes/age: ";
|
||||
text += String(sensor_node.bytesReceived);
|
||||
text += "/";
|
||||
text += sensor_node.bytesReceived
|
||||
? String(millis() - sensor_node.lastByteMs) + " ms"
|
||||
: String("--");
|
||||
text += "\n Frame age: ";
|
||||
text += sensor_node.frameReceived
|
||||
? String(millis() - sensor_node.lastFrameMs) + " ms"
|
||||
|
||||
Reference in New Issue
Block a user