From 86e79e929843e74945663c0d42b30d17f76d5fca Mon Sep 17 00:00:00 2001 From: Jm Casler Date: Tue, 7 Dec 2021 11:46:21 -0800 Subject: [PATCH] Reduce size of airtime repeated struct in mynodeinfo --- mesh.options | 3 +++ mesh.proto | 6 ------ 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/mesh.options b/mesh.options index ae00066..7116b18 100644 --- a/mesh.options +++ b/mesh.options @@ -38,3 +38,6 @@ # MyMessage.name max_size:40 # or fixed_length or fixed_count, or max_count +*MyNodeInfo.air_period_tx max_count:24 +*MyNodeInfo.air_period_rx max_count:24 +# *MyNodeInfo.air_period_rx_all max_count:12 \ No newline at end of file diff --git a/mesh.proto b/mesh.proto index 74c37e7..2bcc692 100644 --- a/mesh.proto +++ b/mesh.proto @@ -962,12 +962,6 @@ message MyNodeInfo { */ repeated uint32 air_period_rx = 17; - /* - * 48 time windows of 1hr each with the airtime of valid lora packets. This includes - * packets that doesn't belong to your mesh. - */ - repeated uint32 air_period_tx_all = 18; - /* * FIXME - add more useful debugging state (queue depths etc) */