From 1b2449b50d11f66d90511559e94cdf40f525fafb Mon Sep 17 00:00:00 2001 From: geeksville Date: Tue, 24 Mar 2020 13:22:16 -0700 Subject: [PATCH] track total lifetime # of bugs this node has seen --- mesh.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mesh.proto b/mesh.proto index be6a9f1..1d909c2 100644 --- a/mesh.proto +++ b/mesh.proto @@ -360,6 +360,10 @@ message MyNodeInfo { /// A numeric error address (nonzero if available) uint32 error_address = 8; + /// The total number of errors this node has ever encountered (well - since + /// the last time we discarded preferences) + uint32 error_count = 9; + /// FIXME - add more useful debugging state (queue depths etc) }