Searched refs:aos_timer_create (Results 1 – 9 of 9) sorted by relevance
/AliOS-Things-master/components/amp/main/ |
A D | amp_task.c | 124 ret = aos_timer_create(timer_id, amp_task_timer_cb_handler, p_param, ms, AOS_TIMER_REPEAT); in amp_task_timer_action() 126 ret = aos_timer_create(timer_id, amp_task_timer_cb_handler, p_param, ms, 0); in amp_task_timer_action()
|
/AliOS-Things-master/components/osal_aos/example/ |
A D | timer_example.c | 56 …status = aos_timer_create(&timer1, timer1_func, NULL, 1000, (AOS_TIMER_REPEAT | AOS_TIMER_AUTORUN)… in aos_timer_example_task()
|
/AliOS-Things-master/components/osal_aos/rhino/ |
A D | aos_timer.c | 70 aos_status_t aos_timer_create(aos_timer_t *timer, void (*fn)(void *, void *), void *arg, in aos_timer_create() function
|
/AliOS-Things-master/components/py_engine/adapter/haas/ |
A D | machine_sw_timer.c | 114 … mp_int_t status = aos_timer_create(self->timerId, machine_soft_timer_isr, self->arg, self->period, in machine_soft_timer_init_helper()
|
/AliOS-Things-master/components/py_engine/adapter/haas510/ |
A D | machine_sw_timer.c | 141 int32_t status = aos_timer_create(&self->timerId, in machine_soft_timer_init_helper()
|
/AliOS-Things-master/components/py_engine/adapter/haas600/ |
A D | machine_sw_timer.c | 141 int32_t status = aos_timer_create(&self->timerId, in machine_soft_timer_init_helper()
|
/AliOS-Things-master/components/osal_aos/include/aos/ |
A D | kernel.h | 678 aos_status_t aos_timer_create(aos_timer_t *timer, void (*fn)(void *, void *), void *arg,
|
/AliOS-Things-master/components/amp_adapter/platform/linux/ |
A D | aos_system.c | 291 aos_status_t aos_timer_create(aos_timer_t *timer, void (*fn)(void *, void *), void *arg, in aos_timer_create() function
|
/AliOS-Things-master/components/osal_aos/ |
A D | README.md | 289 | aos_timer_create() | 定时器创建函数(推荐) | 347 1. t0时刻,测试任务调用aos_timer_create()创建一个周期性的定时器,周期间隔为1秒,回调函数为timer1_func。然后测试任务调用aos_sleep()进入休眠状态。
|
Completed in 12 milliseconds