Hello, I'm developing a firmware for the SAMR35 with the MLS. And I´m having trouble reading the documentation.
The moment a confirmed uplink gets timed out the module stays on busy state for approximately 20 seconds and after that all I get is transmit error.
So I tried to implement a simple query of attribute "LORAWAN_STATUS" :
StackRetStatus_t res = LORAWAN_GetAttr(LORAWAN_STATUS, 0, &lorawanStatus);
The value of res is SUCCESS, but the value deposited in "lorawanStatus" is sometimes 6177, sometimes 9, sometimes 5, and other numbers too.
I tried looking in the MLS documentations as always, but this time I didn't find an answer to what the value of "lorawanStatus" means.
This is all the reference I found:
LORAWAN_STATUS | uint32 0x00000000-0xffffffff | Read Only | 0x00
The documentation for reference is: SAM R34/R35 Microchip LoRaWAN Stack Software API Reference Manual
Also there is this : SAM R34 MLS Getting Started Guide
Is there some other documentation or post that could help with this problem?
Thank you!