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.

Unable to create Osal Timer event CC2541 BLE Central application

I've a question regarding the function "osal_start_timerEx", I've created a timer event as shown below:
osal_start_timerEx( simpleBLETaskId, TIMER_UPDATE_EVT, 250 ); (received errcode SUCCESS here)

but I don't see this event getting triggered in function "SimpleBLECentral_ProcessEvent()". Can anyone please explain me the reason?

Sample code:

SimpleBLECentral_ProcessEvent( uint8 task_id, uint16 events ) - 

if ( events & TIMER_UPDATE_EVT )
{
LCD_WRITE_STRING( "Test...", HAL_LCD_LINE_3 );

osal_start_reload_timer(simpleBLETaskId, TIMER_UPDATE_EVT, 250);
}