Home
last modified time | relevance | path

Searched refs:ESP_TIMER_ISR (Results 1 – 5 of 5) sorted by relevance

/hal_espressif-3.6.0/components/esp_timer/
DKconfig48 … Allows using ESP_TIMER_ISR dispatch method (ESP_TIMER_TASK dispatch method is also avalible).
50 … - ESP_TIMER_ISR - Timer callbacks are dispatched directly from the timer interrupt handler.
/hal_espressif-3.6.0/components/esp_timer/include/
Desp_timer.h62 ESP_TIMER_ISR, //!< Callback is called from timer ISR enumerator
/hal_espressif-3.6.0/docs/en/api-reference/system/
Desp_timer.rst33 - ``ESP_TIMER_ISR``. Available only if :ref:`CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD` is enab…
39 ``ESP_TIMER_ISR``. Timer callbacks are dispatched directly from the timer interrupt handler. This m…
66 Timer callbacks which are processed by ``ESP_TIMER_ISR`` method should not call the context switch …
/hal_espressif-3.6.0/components/esp_timer/test/
Dtest_esp_timer.c950 .dispatch_method = ESP_TIMER_ISR,
1007 .dispatch_method = ESP_TIMER_ISR,
1066 .dispatch_method = ESP_TIMER_ISR,
1121 .dispatch_method = ESP_TIMER_ISR,
/hal_espressif-3.6.0/components/esp_timer/src/
Desp_timer.c416 isr_timers_processed = timer_process_alarm(ESP_TIMER_ISR); in timer_alarm_handler()