diff --git a/micropython/lora/README.md b/micropython/lora/README.md index c32ae915..28a05483 100644 --- a/micropython/lora/README.md +++ b/micropython/lora/README.md @@ -444,9 +444,11 @@ datasheet Table 32 "Frequency Bands" for more details. | `"PA_BOOST"` | RFO_HP pin (high power) | | Any other value | RFO_LP pin (low power) | +**NOTE**: Currently the `PA_BOOST` HP antenna output is lower than it should be +on this board, due to an unknown driver bug. -**Important**: If setting `tx_ant` value, also set `output_power` at the same -time or again before transmitting. +If setting `tx_ant` value, also set `output_power` at the same time or again +before transmitting. #### `output_power` - Transmit output power level Type: `int` diff --git a/micropython/lora/lora-stm32wl5/lora/stm32wl5.py b/micropython/lora/lora-stm32wl5/lora/stm32wl5.py index ba712883..07091b37 100644 --- a/micropython/lora/lora-stm32wl5/lora/stm32wl5.py +++ b/micropython/lora/lora-stm32wl5/lora/stm32wl5.py @@ -101,6 +101,8 @@ class _WL55SubGhzModem(sx126x._SX126x): # power). if tx_ant is not None: + # Note: currently HP antenna power output is less than it should be, + # due to some (unknown) bug. self._hp = tx_ant == "PA_BOOST" # Update the OCP register to match the maximum power level