2018-10-26 01:14:19 -04:00
|
|
|
menu "Event Loop Library"
|
|
|
|
|
2019-04-29 06:54:02 -04:00
|
|
|
config ESP_EVENT_LOOP_PROFILING
|
2019-01-25 11:10:53 -05:00
|
|
|
bool "Enable event loop profiling"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Enables collections of statistics in the event loop library such as the number of events posted
|
|
|
|
to/recieved by an event loop, number of callbacks involved, number of events dropped to to a full event
|
|
|
|
loop queue, run time of event handlers, and number of times/run time of each event handler.
|
2018-10-26 01:14:19 -04:00
|
|
|
|
2019-04-29 06:54:02 -04:00
|
|
|
config ESP_EVENT_POST_FROM_ISR
|
2019-02-15 08:28:24 -05:00
|
|
|
bool "Support posting events from ISRs"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Enable posting events from interrupt handlers.
|
|
|
|
|
2019-04-29 06:54:02 -04:00
|
|
|
config ESP_EVENT_POST_FROM_IRAM_ISR
|
2019-02-15 08:28:24 -05:00
|
|
|
bool "Support posting events from ISRs placed in IRAM"
|
|
|
|
default y
|
2019-04-29 06:54:02 -04:00
|
|
|
depends on ESP_EVENT_POST_FROM_ISR
|
2019-02-15 08:28:24 -05:00
|
|
|
help
|
|
|
|
Enable posting events from interrupt handlers placed in IRAM. Enabling this option places API functions
|
|
|
|
esp_event_post and esp_event_post_to in IRAM.
|
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
endmenu
|