TI论坛
直播中

李林臻

7年用户 183经验值
私信 关注

Z_Stack_Home_1.2.2a中怎么使用osal_start_timerEx函数?请问怎么设置一个定时事件触发?

本帖最后由 一只耳朵怪 于 2018-5-31 09:59 编辑

使用的芯片是CC2630,协议栈是Z_Stack_Home_1.2.2a,在SampleSwitch工程中,怎么设置一个定时事件触发,以前使用CC2530是用osal_start_timerEx函数,现在想使用这个函数,发现找不到他的第一个参数,不知道怎么设置。

回帖(3)

刘馨

2018-5-31 01:19:42
/********************************************************************* * @fn      osal_start_timerEx * * @brief * *   This function is called to start a timer to expire in n mSecs. *   When the timer expires, the calling task will get the specified event. * * @param   uint8 taskID - task id to set timer for * @param   uint16 event_id - event to be notified with * @param   UNINT16 timeout_value - in milliseconds. * * @return  SUCCESS, or NO_TIMER_AVAIL. */uint8 osal_start_timerEx( uint8 taskID, uint16 event_id, uint16 timeout_value )[  halIntState_t intState;  osalTimerRec_t *newTimer;  1.HAL_ENTER_CRITICAL_SECTION( intState );  // Hold off interrupts.  // Add timer  2.newTimer = osalAddTimer( taskID, event_id, timeout_value );  3.HAL_EXIT_CRITICAL_SECTION( intState );   // Re-enable interrupts.  return ( (newTimer != NULL) ? SUCCESS : NO_TIMER_AVAIL );]
你是找这个函数吗
举报

李林臻

2018-5-31 01:34:46
引用: 潘涛12345 发表于 2018-5-31 01:19
/********************************************************************* * @fn      osal_start_timerEx * * @brief * *   This function is called to start a timer to expire in n mSecs. *   When the timer expires, the calling task will get the specified event. * * @param   uint8 taskID - task id to set t ...

恩,本来想找定时的方法的,后面找到一种软件定时的方法,就不用这个函数了,以前用CC2530的时候,都是用这个函数来定时的。
举报

苏笛笛

2018-5-31 01:41:32
原文地址:http://www.kaleidscope.cn:1020/archives/1056
举报

更多回帖

发帖
×
20
完善资料,
赚取积分