This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

关于osal_start_reload_timer和osal_stop_timerEx

我在程序里先开了一个重复定时任务TestPort_TIMEOUT_EVT:osal_start_reload_timer(zclSampleApp_TaskID, TestPort_TIMEOUT_EVT,500);

然后又把它管了:osal_stop_timerEx(zclSampleApp_TaskID,TestPort_TIMEOUT_EVT);

接着又开启了另一个重复定时任务NetworkBuilt_TIMEOUT_EVT:osal_start_reload_timer(zclSampleApp_TaskID, NetworkBuilt_TIMEOUT_EVT,500);//定时重发

然后就发现上一个定时任务TestPort_TIMEOUT_EVT也被触发了,这是为何?