文件名称:MTK定时器消息传递机制
文件大小:86KB
文件格式:DOC
更新时间:2013-06-12 10:23:08
MTK 定时器 消息
typedef struct timertable { /* store the timer_id. MSB(Most Significant Bit) is align_timer_mask */ U16 timer_id[SIMULTANEOUS_TIMER_NUM]; /* store the event_id that returns from evshed_set_event() */ eventid event_id[SIMULTANEOUS_TIMER_NUM]; /* store the timer_expiry_func */ oslTimerFuncPtr callback_func[SIMULTANEOUS_TIMER_NUM]; /* point to the next TIMERTABLE data */ struct timertable *next; } TIMERTABLE; typedef lcd_dll_node *eventid; struct lcd_dll_node { void *data; lcd_dll_node *prev; lcd_dll_node *next; };