1menu "Example Configuration"
2
3    choice TOUCH_SENSOR_EXAMPLE_TYPE
4        bool "Select touch element dispatch method"
5        default TOUCH_ELEM_EVENT
6        help
7            Select touch element dispatch method (event task or callback) for this example.
8
9        config TOUCH_ELEM_EVENT
10            bool "Dispatch by event task"
11        config TOUCH_ELEM_CALLBACK
12            bool "Dispatch by callback"
13    endchoice
14
15endmenu
16