|
楼主 |
发表于 2025-2-6 07:29:10
|
显示全部楼层
本帖最后由 jylee@kme21.com 于 2025-2-6 07:49 编辑
TL_YB 发表于 2025-2-5 10:31
After calling zb_factoryReset(), the stack will start a factory new task (to send leave),
then nv_r ...
void factoryRst_handler(void){
if(factoryRst_exist){
//#if (DEBUG_MODE == 1)
printf("===================start factory reset2=========\r\n");
//#endif
factoryRst_exist = FALSE;
zb_factoryReset();
}
}
void sampleLight_leaveCnfHandler(nlme_leave_cnf_t *pLeaveCnf)
{
//#if (DEBUG_MODE == 1)
printf("===================sampleLight_leaveCnfHandler====%d=====\r\n", pLeaveCnf->status);
//#endif
if(pLeaveCnf->status == SUCCESS)
{
light_blink_start(3, 200, 200);
//waiting blink over
TL_ZB_TIMER_SCHEDULE(sampleLight_recoveryStart, NULL, 2 * 1000);
}
}
====================================================
===================start factory reset2=========<CR><LF>
===================sampleLight?leaveCnfHandler====194=====<CR><LF>
====================================================
pLeaveCnf->status is 194 in sampleLight_leaveCnfHandler()
sometimes sampleLight_leaveCnfHandler() is not worked.
What is problem ?
|
|