Hi everyone, i am new at this platform.
In my project, i need to take gps data from uart and send the data over zigbee with nrf52833. I haven't found any example and don't know where to start.
Thanks.
Hi everyone, i am new at this platform.
In my project, i need to take gps data from uart and send the data over zigbee with nrf52833. I haven't found any example and don't know where to start.
Thanks.
There are some examples here: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.1.0/nrf/samples.html
And here: https://docs.zephyrproject.org/latest/samples/index.html
On VSCode NCS extension it's really easy to setup the examples. Take a look at some tutorials on YouTube Nordic Semi channel.
I suggest you to start with something simpler to get to know zephyr.
Also i have tried the coordinator example with shell.
i have write this commands to the shell
> bdb role zr
> bdb start
And my coordinator screen like this :

Also my shell screen is here:

Those are the example and i didnt change anything. But i guss there is a problem.
Hi,
"Unimplemented signal (signal: %d, status: %d)" does not necessarily mean that there is an error. It is printed when a signal that is not handled in the signal handler (zboss_signal_handler) is generated. You can find a list over all the signals in ZBOSS commissioning signals handler if you look under the section "Signals passed to zboss_signal_handler()". As you see there signal 54 is ZB_NWK_SIGNAL_PERMIT_JOIN_STATUS, which means that the network was just closed or opened.
Best regards,
Marte
Hi,
"Unimplemented signal (signal: %d, status: %d)" does not necessarily mean that there is an error. It is printed when a signal that is not handled in the signal handler (zboss_signal_handler) is generated. You can find a list over all the signals in ZBOSS commissioning signals handler if you look under the section "Signals passed to zboss_signal_handler()". As you see there signal 54 is ZB_NWK_SIGNAL_PERMIT_JOIN_STATUS, which means that the network was just closed or opened.
Best regards,
Marte