Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
9 years, 7 months ago.
Is it possible to set TX_OUTPUT_POWER to 20dBm when using Sx1276MBLAS in HF LoRa mode?
Hi, I have two Sx1276MBLAS shield attached to FRDM-KL25Z. I am trying to test the range of the device with the PingPong demo at maximum power output. We are in NA, so only 915MHz band is available to us. Is it possible to set the output power to 20dBm? when i try ti increase the TX_OUTPUT_POWER to above 14 dBm, it seem to wrap around to 0? Is the PA_BOOST automatically enabled when using 915MHz, or do I have to set a register?
Thanks, MX
Question relating to:
1 Answer
9 years, 7 months ago.
To get 20 dBm output power on the Sx1276MBLAS in NA, you only need to change two lines:
Change in main.c from:
- define RF_FREQUENCY 868000000 Hz
- define TX_OUTPUT_POWER 14 14 dBm
to
- define RF_FREQUENCY 915000000 Hz
- define TX_OUTPUT_POWER 20 20 dBm
The low level driver will set the registers accordingly.