Autostart Joiner #11
-
Hey, I tested your samples/openthread_tag_sensors on the NRF52DK. CONFIG_OPENTHREAD_JOINER=y On the Commisioner side I tried to add "ABCDEF" but nothing happens, also changed the Panid of the joiner. br |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Hey, maybe this might help: zephyrproject-rtos/zephyr#30433 (comment) Best |
Beta Was this translation helpful? Give feedback.
-
@juliankaroliny Try to make it work with cli devices first, then you have a reference to compare with, worst case with sniffer which gives a great insight. Once working, rest is to figure out what command line param goes to which config item, you need to keep checking if you software compiled it correctly and make sure you delete the whole device because previous runs write on nv memory and could override new config params, that wasted me lots of time, otherwisewise make sure you know how to systematically debug all aspects of the thing, that the fun part and how someone learns, any part you cannot debug is where the bug will hide |
Beta Was this translation helpful? Give feedback.
-
Sorry for the way to late response, I had to set this problem on the side for the moment. It was really the issue that not everthing is deleted with a normal flash. However, I additionally had to add Thanks again for both answers they really helped me BR |
Beta Was this translation helpful? Give feedback.
@juliankaroliny
I know that the OpenThread documentation is kind of made for those who already know it and is tricky to follow. I added some detailed examples here
https://www.homesmartmesh.com/docs/networks/thread/#commissioning
Try to make it work with cli devices first, then you have a reference to compare with, worst case with sniffer which gives a great insight. Once working, rest is to figure out what command line param goes to which config item, you need to keep checking if you software compiled it correctly and make sure you delete the whole device because previous runs write on nv memory and could override new config params, that wasted me lots of time, otherwisewise make sure yo…