From 271b8783afbcacfc900b4260a4216cb2cb3c8e01 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Tue, 31 Oct 2023 12:44:32 +0100 Subject: [PATCH] Fixed signal report SNR output --- sbapp/sideband/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbapp/sideband/core.py b/sbapp/sideband/core.py index e54965a..6af0455 100644 --- a/sbapp/sideband/core.py +++ b/sbapp/sideband/core.py @@ -3491,7 +3491,7 @@ class SidebandCore(): if message.rssi != None: phy_str += f"RSSI: {message.rssi} dBm\n" if message.snr != None: - phy_str += f"SNR: {message.rssi} dB\n" + phy_str += f"SNR: {message.snr} dB\n" if len(phy_str) != 0: phy_str = phy_str[:-1] else: