2025-08-04 2:28 PM
Hello,
Based on the NVM example, after: ZbPersistNotifyRegister(zigbee_app_info.zb,APP_ZIGBEE_persist_notify_cb,NULL).
What actions cause the device to enter the callback? Where can this information be found?
Thanks,
Solved! Go to Solution.
2025-08-08 6:36 AM
Hi @ISLTG,
The persistence notify callback is called every time a persistent data change occurs on zigbee network, the stack notifies the change using this callback to the application layer.
As an example, the NVM data is saved immediately in case of network update ( device join, device leave, NWK key update..), ZCL attributes change.
You can refer to the wiki page below that describes the Zigbee persistent data management :
Connectivity:Zigbee persistent data management and non-volatile memory - stm32mcu
Best regards,
Ouadi
2025-08-08 6:36 AM
Hi @ISLTG,
The persistence notify callback is called every time a persistent data change occurs on zigbee network, the stack notifies the change using this callback to the application layer.
As an example, the NVM data is saved immediately in case of network update ( device join, device leave, NWK key update..), ZCL attributes change.
You can refer to the wiki page below that describes the Zigbee persistent data management :
Connectivity:Zigbee persistent data management and non-volatile memory - stm32mcu
Best regards,
Ouadi
2025-08-08 7:07 AM
Hello @Ouadi,
Any idea why saving might enter the NMI Handler, or take longer than expected?
I have not changed the NVM functions from the example code.
Thanks,