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.

Problem with osal timerEx

Hello,

       I am starting a timer in a Coordinator, which fails to start after some iteration. 

   #define SENSOR_STATUS      0x0008

if(Get_Val == 0)
{
  --------//Some Process
Get_Val= 1;
osal_start_timerEx( zcl_TaskID , SENSOR_STATUS  , 5000);
}

else if(Get_Val == 1)
{
  --------//Some Process
Get_Val= 0;
osal_start_timerEx( zcl_TaskID , SENSOR_STATUS  , 13000);
}

It is working for some times(~7-10 Min). Then this Event is not occuring. what is the Problem. Is any possibility that Coordinator miss to Start a timer or fails to trigger that event after timer expires