Home
last modified time | relevance | path

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

/hal_espressif-3.4.0/components/esp_hw_support/
Dintr_alloc.c423 non_shared_isr_arg_t *ns_isr_arg=(non_shared_isr_arg_t*)arg; in non_shared_intr_isr() local
425 traceISR_ENTER(ns_isr_arg->source+ETS_INTERNAL_INTR_SOURCE_OFF); in non_shared_intr_isr()
428 ns_isr_arg->isr(ns_isr_arg->isr_arg); in non_shared_intr_isr()
527 non_shared_isr_arg_t *ns_isr_arg=malloc(sizeof(non_shared_isr_arg_t)); in esp_intr_alloc_intrstatus() local
528 if (!ns_isr_arg) { in esp_intr_alloc_intrstatus()
533 ns_isr_arg->isr=handler; in esp_intr_alloc_intrstatus()
534 ns_isr_arg->isr_arg=arg; in esp_intr_alloc_intrstatus()
535 ns_isr_arg->source=source; in esp_intr_alloc_intrstatus()
536 interrupt_controller_hal_set_int_handler(intr, non_shared_intr_isr, ns_isr_arg); in esp_intr_alloc_intrstatus()