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.
6 years, 3 months ago.
How to disable ADR and set your value for spreading factor and packet size?
Hello all,
I am new in this area of networks and I am also not so good at programming. Because of that, I have the question for you: Can you please write me how to disable ADR in the LoRAWAN example, set your own spreading factor and packet size.
Thank you in advance.
Kind regards!
1 Answer
6 years, 3 months ago.
Hi Adnan,
The configuration of LoRa can be referred here, https://os.mbed.com/docs/mbed-os/v5.13/reference/lorawan-configuration.html
Regarding your question about disabling ADR, you can add below to mbed_app.json
"target_overrides": {
"*": {
"lora.adr-on": false
}
}
Regards,
Desmond