Jan Janak
Jan Janak
I just came across what I believe to might be the same or similar issue. I am in US915 and when I enable class B for my device and configure...
Yes, that makes sense to me. This is probably better than modifying LoRaMacProcess. Thanks. -Jan On Wed, Jun 15, 2022 at 5:07 AM Miguel Luis ***@***.***> wrote: > I think...
Hi @mluis1, `IsUplinkTxRetransmit` sounds like a good idea to me. Please let me know if you would like me to update the PR.
Hi @mluis1, so I was looking into this and I am wondering if invoking the McpsIndication primitive for uplink retransmissions is the right thing to do. When I look at...
Hi @mluis1, I like this idea! Conceptually, I think it fits nicely with all the other uses of MlmeIndication. I will update the PR. Thanks.
I have recently debugged what appears to be the same issue. If you are still struggling with the problem, check #1288 and the pull request #1287.
Looks correct to me. It only checks the CRC value if there actually is any data (other than the CRC) in RegionNvmDataGroup1_t. The size of that data structure depends on...
This test is a corner case that only needs to be performed for one particular data structure. If you put it in the function, it will be performed every single...
No other NVM data structure can have zero payload size. See their definitions. `RegionNvmDataGroup1_t` is an exception. I agree regarding parameter checking. `NvmmCrc32Check` should check that the size parameter value...
I guess you could also argue that if `RegionNvmDataGroup1_t` is empty, its NVM checksum should still have been initialized to 0. Then the if condition in your original post would...