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);
}