Apply downstream patch from @jacobeva. Fixes TX power output on RAK boards.

This commit is contained in:
Mark Qvist 2024-05-26 09:47:54 +02:00
parent 8d68a14b89
commit d0ff3d5b31
1 changed files with 3 additions and 0 deletions

View File

@ -1062,6 +1062,9 @@ int getTxPower() {
void setTXPower() {
if (radio_online) {
if (model == MODEL_11) LoRa->setTxPower(lora_txp, PA_OUTPUT_RFO_PIN);
if (model == MODEL_12) LoRa->setTxPower(lora_txp, PA_OUTPUT_RFO_PIN);
if (model == MODEL_A1) LoRa->setTxPower(lora_txp, PA_OUTPUT_PA_BOOST_PIN);
if (model == MODEL_A2) LoRa->setTxPower(lora_txp, PA_OUTPUT_PA_BOOST_PIN);
if (model == MODEL_A3) LoRa->setTxPower(lora_txp, PA_OUTPUT_RFO_PIN);