mirror of
https://github.com/markqvist/Sideband.git
synced 2025-07-21 06:04:12 -04:00
Fixed signal report SNR output
This commit is contained in:
parent
9481938d41
commit
271b8783af
1 changed files with 1 additions and 1 deletions
|
@ -3491,7 +3491,7 @@ class SidebandCore():
|
||||||
if message.rssi != None:
|
if message.rssi != None:
|
||||||
phy_str += f"RSSI: {message.rssi} dBm\n"
|
phy_str += f"RSSI: {message.rssi} dBm\n"
|
||||||
if message.snr != None:
|
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:
|
if len(phy_str) != 0:
|
||||||
phy_str = phy_str[:-1]
|
phy_str = phy_str[:-1]
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue