2022-08-16 09:16 PM
I looked into the radio_driver.h library, Radiolorabandwidths enum there is enumeration of lora bandwidths but the value assigned seems to be random with respect to RM0453 document on Bandwidth on lora. Is the library is correct or need modification?
Solved! Go to Solution.
2022-08-26 06:06 AM
Hello,
You have to use the index of the bandwidth as it is describe in the code. There is a mistake in the Reference Manual regarding this information.
Thank you for pointing this out.
Best regards
Louis
2022-08-16 09:56 PM
Check how it is actually used, there's no requirement that these enumeration get written to the register.
2022-08-17 12:01 AM
for example: in library 500KHz = 6 which is provided by the stm32cubewl but in document 500KHz = 9 , so i was confused which one is right value to use
2022-08-26 06:06 AM
Hello,
You have to use the index of the bandwidth as it is describe in the code. There is a mistake in the Reference Manual regarding this information.
Thank you for pointing this out.
Best regards
Louis
2022-08-26 11:18 AM
Thank you!