1menu "Button" 2 3 choice BUTTON_TIMER_IMPLEMENT 4 bool "Button Timer Mode" 5 default BUTTON_USE_ESP_TIMER 6 help 7 Choose a implementation of timer for button instance. 8 9 config BUTTON_USE_RTOS_TIMER 10 bool "Use FreeRTOS Timer" 11 12 config BUTTON_USE_ESP_TIMER 13 bool "Use ESP Timer" 14 endchoice 15 16 config BUTTON_IO_GLITCH_FILTER_TIME_MS 17 int "IO glitch filter timer ms (10~100)" 18 range 10 100 19 default 50 20 21endmenu 22