Home
last modified time | relevance | path

Searched refs:osTimerId (Results 1 – 4 of 4) sorted by relevance

/Zephyr-Core-3.6.0/subsys/portability/cmsis_rtos_v1/
Dcmsis_timer.c38 osTimerId osTimerCreate(const osTimerDef_t *timer_def, os_timer_type type, in osTimerCreate()
64 return (osTimerId)timer; in osTimerCreate()
70 osStatus osTimerStart(osTimerId timer_id, uint32_t millisec) in osTimerStart()
96 osStatus osTimerStop(osTimerId timer_id) in osTimerStop()
120 osStatus osTimerDelete(osTimerId timer_id) in osTimerDelete()
/Zephyr-Core-3.6.0/tests/subsys/portability/cmsis_rtos_v1/src/
Dtimer.c43 osTimerId id1; in ZTEST()
44 osTimerId id2; in ZTEST()
/Zephyr-Core-3.6.0/include/zephyr/portability/
Dcmsis_os.h141 typedef struct os_timer_cb *osTimerId; typedef
391 osTimerId osTimerCreate (const osTimerDef_t *timer_def, os_timer_type type, void *argument);
398 osStatus osTimerStart (osTimerId timer_id, uint32_t millisec);
404 osStatus osTimerStop (osTimerId timer_id);
410 osStatus osTimerDelete (osTimerId timer_id);
/Zephyr-Core-3.6.0/samples/subsys/portability/cmsis_rtos_v1/timer_synchronization/src/
Dmain.c59 osTimerId timer_id; in main()