Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/freertos/test/
Dtest_timers.c37 TEST_ASSERT( xTimerDelete(oneshot, 1) );
69 TEST_ASSERT( xTimerDelete(recurring, 1) );
Dtest_freertos_backported_functions.c68 TEST_ASSERT_EQUAL(pdPASS, xTimerDelete(tmr_handle, portMAX_DELAY)); //Clean up
Dtest_task_suspend_resume.c380 xTimerDelete(count_time, portMAX_DELAY); in test_scheduler_suspend3()
/hal_espressif-3.6.0/examples/peripherals/gpio/matrix_keyboard/components/matrix_keyboard/src/
Dmatrix_keyboard.c169 xTimerDelete(mkbd->debounce_timer, 0); in matrix_kbd_install()
186 xTimerDelete(mkbd_handle->debounce_timer, 0); in matrix_kbd_uninstall()
/hal_espressif-3.6.0/examples/network/simple_sniffer/main/
Dcmd_pcap.c101 xTimerDelete(pcap->trace_flush_timer, pdMS_TO_TICKS(100)); in pcap_close()
193 xTimerDelete(pcap_cmd_rt.trace_flush_timer, pdMS_TO_TICKS(100)); in sniff_packet_start()
/hal_espressif-3.6.0/components/freertos/include/freertos/
Dtimers.h678 #define xTimerDelete( xTimer, xTicksToWait ) \ macro
/hal_espressif-3.6.0/components/driver/esp32/
Dtouch_sensor.c474 xTimerDelete(s_touch_pad_filter->timer, portMAX_DELAY); in touch_pad_filter_delete()
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/common_components/button/
Dbutton.c31 #define DELETE_TIMER(tmr) xTimerDelete(tmr, portMAX_DELAY);
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/common_components/light_driver/
Dlight_driver.c742 if (!xTimerDelete(g_fade_timer, portMAX_DELAY)) { in light_fade_timer_stop()