使用的芯片是CC2630,协议栈是Z_Stack_Home_1.2.2a,在SampleSwitch工程中,怎么设置一个定时事件触发,以前使用CC2530是用osal_start_timerEx函数,现在想使用这个函数,发现找不到他的第一个参数,不知道怎么设置。
gaoyang9992006:
/********************************************************************** @fnosal_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.** @paramuint8 taskID - task id to set timer for* @paramuint16 event_id - event to be notified with* @paramUNINT16 timeout_value - in milliseconds.** @returnSUCCESS, 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 timer2.newTimer = osalAddTimer( taskID, event_id, timeout_value );3.HAL_EXIT_CRITICAL_SECTION( intState );// Re-enable interrupts.return ( (newTimer != NULL) ? SUCCESS : NO_TIMER_AVAIL ); }你是找这个函数吗
user1999055:
原文地址:http://www.kaleidscope.cn:1020/archives/1056