2025-07-31 7:30 AM - edited 2025-08-12 1:20 PM
Hello,
I copied the logic from the NVM Zigbee examples.
I notice that the end devices almost periodically calls the persistent data callback to save when I am sending sequential data sequences.
However, this unfortunately causes the end device to sometimes miss the reception of Zigbee data, and in my case, does not call ZbZcl_custom_ls_ServerSendCommandRsp.
The devices end up LOSING connection shortly after saving to persistent data.
Is this intended, and are there any solutions?
Thanks,
2025-08-08 6:28 AM
Hello @ISLTG,
I recommend to take a look on zigbee specification to be familiar with Broadcast communication mode, here are some hints :
Group addressing using ZB_APSDE_ADDRMODE_GROUP allow to send a message to a group of devices, while the broadcast mode in my example allow sending message to all devices on the network.
Best regards,
Ouadi
2025-08-08 6:53 AM - edited 2025-08-08 8:50 AM
Thanks for all the help @Ouadi.
3 seconds is unusable for my application.
Group addressing at 300ms seems to work well enough though...
Hopefully this isn't against recommended practice?
Thanks,