You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is telling us that DevNonce is no longer a random 2 byte number but an incrementing number which has 64k possible values. A random number can be repeated.
Do you plan to change the dragino.py code? It will need to store the devnonce (probably in dragino.ini) and increment it on each join attempt till it reaches it's max value. One hopes that 64K values is more than enough for testing.
I'm hoping this is why my dev code is only occasionally showing a join-request in the V3 console and making dev difficult.. I'm about to test that today.
I'm reading this:-
https://www.thethingsnetwork.org/forum/t/lorawan-1-1-devnonce-must-be-stored-in-a-non-volatile-memory-on-end-device/48995/4
And in particular this
This is telling us that DevNonce is no longer a random 2 byte number but an incrementing number which has 64k possible values. A random number can be repeated.
Do you plan to change the dragino.py code? It will need to store the devnonce (probably in dragino.ini) and increment it on each join attempt till it reaches it's max value. One hopes that 64K values is more than enough for testing.
I'm hoping this is why my dev code is only occasionally showing a join-request in the V3 console and making dev difficult.. I'm about to test that today.