Home
last modified time | relevance | path

Searched refs:tick (Results 1 – 9 of 9) sorted by relevance

/USBX-v6.2.1/common/usbx_device_classes/src/
Dux_device_class_hid_tasks_run.c87 ULONG tick, elapsed; in _ux_device_class_hid_tasks_run() local
145 tick = _ux_utility_time_get(); in _ux_device_class_hid_tasks_run()
146 elapsed = _ux_utility_time_elapsed(hid -> ux_device_class_hid_event_wait_start, tick); in _ux_device_class_hid_tasks_run()
/USBX-v6.2.1/test/regression/
Dusbx_class_hid_basic_test.c395 static UINT demo_wait(ULONG tick, UINT (*check)()) in demo_wait() argument
413 if (_ux_utility_time_elapsed(t0, t1) >= tick) in demo_wait()
421 static UINT demo_class_hid_wait(ULONG tick) in demo_class_hid_wait() argument
423 return(demo_wait(tick, demo_class_hid_get)); in demo_class_hid_wait()
Dusbx_class_hid_keyboard_basic_test.c362 static UINT demo_class_hid_wait(ULONG tick) in demo_class_hid_wait() argument
364 return(ux_test_sleep_break_on_success(tick, demo_class_hid_keyboard_get)); in demo_class_hid_wait()
Dusbx_class_hid_remote_control_basic_test.c390 static UINT demo_class_hid_wait(ULONG tick) in demo_class_hid_wait() argument
392 return(ux_test_sleep_break_on_success(tick, demo_class_hid_remote_control_get)); in demo_class_hid_wait()
Dux_test.c1239 UINT ux_test_breakable_sleep(ULONG tick, UINT (*sleep_break_check_callback)(VOID)) in ux_test_breakable_sleep() argument
1245 while(tick) { in ux_test_breakable_sleep()
1248 t = (tick > SLEEP_STEP) ? SLEEP_STEP : tick; in ux_test_breakable_sleep()
1269 tick -= t; in ux_test_breakable_sleep()
1275 UINT ux_test_sleep_break_if(ULONG tick, UINT (*check)(VOID), in ux_test_sleep_break_if() argument
1308 if (_ux_utility_time_elapsed(t0, t1) >= tick) in ux_test_sleep_break_if()
Dusbx_class_hid_mouse_basic_test.c362 static UINT demo_class_hid_wait(ULONG tick) in demo_class_hid_wait() argument
364 return(ux_test_sleep_break_on_success(tick, demo_class_hid_mouse_get)); in demo_class_hid_wait()
Dux_test.h506 UINT ux_test_breakable_sleep(ULONG tick, UINT (*sleep_break_check_callback)(VOID));
507 UINT ux_test_sleep_break_if(ULONG tick, UINT (*check)(VOID), UINT break_on_match_or_not, UINT rc_to…
/USBX-v6.2.1/common/usbx_host_classes/src/
Dux_host_class_cdc_acm_entry.c344 ULONG tick, diff; in _ux_host_class_cdc_acm_activate_wait() local
358 tick = _ux_utility_time_get(); in _ux_host_class_cdc_acm_activate_wait()
359 diff = _ux_utility_time_elapsed(cdc_acm -> ux_host_class_cdc_acm_tick, tick); in _ux_host_class_cdc_acm_activate_wait()
/USBX-v6.2.1/docs/
Drevision_history.txt59 …ux_utility_thread_sleep.c Computes the TX timer tick from the passing millis…