mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
16 lines
430 B
Plaintext
16 lines
430 B
Plaintext
menu "Example Configuration"
|
|
|
|
choice TOUCH_SENSOR_EXAMPLE_TYPE
|
|
bool "Select touch element dispatch method"
|
|
default TOUCH_ELEM_EVENT
|
|
help
|
|
Select touch element dispatch method (event task or callback) for this example.
|
|
|
|
config TOUCH_ELEM_EVENT
|
|
bool "Dispatch by event task"
|
|
config TOUCH_ELEM_CALLBACK
|
|
bool "Dispatch by callback"
|
|
endchoice
|
|
|
|
endmenu
|