Kconfig 500 B

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