mirror of
https://github.com/liberatedsystems/RNode_Firmware_CE.git
synced 2025-07-30 01:48:35 -04:00
Fix RSSI miscalculation and TX power not being set correctly
This commit is contained in:
parent
98ee2f6d32
commit
c21d8dcb2b
3 changed files with 4 additions and 4 deletions
|
@ -620,7 +620,7 @@ void serialCallback(uint8_t sbyte) {
|
|||
kiss_indicate_txpower();
|
||||
} else {
|
||||
int txp = sbyte;
|
||||
if (txp > 17) txp = 17;
|
||||
if (txp > 22) txp = 22;
|
||||
|
||||
lora_txp = txp;
|
||||
if (op_mode == MODE_HOST) setTXPower();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue