esp_intr_mark_shared() function
Mark an interrupt as a shared interrupt This will mark a certain interrupt on the specified CPU as an interrupt that can be used to hook shared interrupt handlers to.
Arguments
intno
The number of the interrupt (0-31)
cpu
CPU on which the interrupt should be marked as shared (0 or 1)
is_in_iram
Shared interrupt is for handlers that reside in IRAM and the int can be left enabled while the flash cache is disabled.
Return value
ESP_ERR_INVALID_ARG if cpu or intno is invalid ESP_OK otherwise