1menu "Event Loop Library"
2
3    config ESP_EVENT_LOOP_PROFILING
4        bool "Enable event loop profiling"
5        default n
6        help
7            Enables collections of statistics in the event loop library such as the number of events posted
8            to/recieved by an event loop, number of callbacks involved, number of events dropped to to a full event
9            loop queue, run time of event handlers, and number of times/run time of each event handler.
10
11    config ESP_EVENT_POST_FROM_ISR
12        bool "Support posting events from ISRs"
13        default y
14        help
15            Enable posting events from interrupt handlers.
16
17    config ESP_EVENT_POST_FROM_IRAM_ISR
18        bool "Support posting events from ISRs placed in IRAM"
19        default y
20        depends on ESP_EVENT_POST_FROM_ISR
21        help
22            Enable posting events from interrupt handlers placed in IRAM. Enabling this option places API functions
23            esp_event_post and esp_event_post_to in IRAM.
24
25endmenu
26