From 1b1dc090ef38f708a276dfb51b17de5ca06b3ade Mon Sep 17 00:00:00 2001 From: Benjamin Faershtein <119711889+RCGV1@users.noreply.github.com> Date: Sat, 17 Jan 2026 09:53:09 -0800 Subject: [PATCH] Add noise_floor float field to LocalStats message --- meshtastic/telemetry.proto | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/meshtastic/telemetry.proto b/meshtastic/telemetry.proto index 88d8213..cbe9a2d 100644 --- a/meshtastic/telemetry.proto +++ b/meshtastic/telemetry.proto @@ -439,10 +439,15 @@ message LocalStats { */ uint32 heap_free_bytes = 13; - /* - * Number of packets that were dropped because the transmit queue was full. - */ + /* + * Number of packets that were dropped because the transmit queue was full. + */ uint32 num_tx_dropped = 14; + + /* + * Noise floor value measured in dBm + */ + float noise_floor = 15; } /*