esp-idf-lib/components/button/Kconfig

Thu, 06 Apr 2023 13:22:03 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Thu, 06 Apr 2023 13:22:03 +0200
changeset 17
1599e696d947
parent 1
1c9894662795
permissions
-rw-r--r--

Code changes to try to fix the not working ADPS9930 driver.

menu "Button"

	config BUTTON_MAX
		int "Maximum number of buttons"
		range 1 10
		default 5
	
	config BUTTON_POLL_TIMEOUT
		int "Poll timeout, ms"
		range 1 1000
		default 10

	config BUTTON_LONG_PRESS_TIMEOUT
		int "Timeout of long press, ms"
		range 100 10000
		default 1000

	config BUTTON_AUTOREPEAT_TIMEOUT
		int "Timeout before autorepeat, ms"
		range 100 10000
		default 500

	config BUTTON_AUTOREPEAT_INTERVAL
		int "Autorepeat interval, ms"
		range 100 10000
		default 250
		
endmenu

mercurial