Skip to content

Commit

Permalink
Merge branch 'cyberman54-patch-1' (close #894)
Browse files Browse the repository at this point in the history
  • Loading branch information
terrillmoore committed Oct 2, 2024
2 parents 7efd46f + 5dc8f1c commit 038f28c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lmic/radio_sx127x.c
Original file line number Diff line number Diff line change
Expand Up @@ -668,9 +668,9 @@ static void configPower () {
if (req_pw >= 20) {
policy = LMICHAL_radio_tx_power_policy_20dBm;
eff_pw = 20;
} else if (eff_pw >= 14) {
} else if (req_pw >= 14) {
policy = LMICHAL_radio_tx_power_policy_paboost;
if (eff_pw > 17) {
if (req_pw > 17) {
eff_pw = 17;
} else {
eff_pw = req_pw;
Expand Down

0 comments on commit 038f28c

Please sign in to comment.