2018-10-26 05:14:19 +00:00
|
|
|
menu "Event Loop Library"
|
|
|
|
|
2019-04-29 10:54:02 +00:00
|
|
|
config ESP_EVENT_LOOP_PROFILING
|
2019-01-25 16:10:53 +00: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 05:14:19 +00:00
|
|
|
|
2019-04-29 10:54:02 +00:00
|
|
|
config ESP_EVENT_POST_FROM_ISR
|
2019-02-15 13:28:24 +00:00
|
|
|
bool "Support posting events from ISRs"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Enable posting events from interrupt handlers.
|
|
|
|
|
2019-04-29 10:54:02 +00:00
|
|
|
config ESP_EVENT_POST_FROM_IRAM_ISR
|
2019-02-15 13:28:24 +00:00
|
|
|
bool "Support posting events from ISRs placed in IRAM"
|
|
|
|
default y
|
2019-04-29 10:54:02 +00:00
|
|
|
depends on ESP_EVENT_POST_FROM_ISR
|
2019-02-15 13:28:24 +00: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 16:10:53 +00:00
|
|
|
endmenu
|