mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-02-05 05:23:46 +00:00
37 lines
810 B
Plaintext
37 lines
810 B
Plaintext
menuconfig RT_USING_INPUT
|
|
bool "Using Input device drivers"
|
|
depends on RT_USING_DM
|
|
select RT_USING_ADT
|
|
select RT_USING_ADT_BITMAP
|
|
default n
|
|
|
|
config RT_INPUT_POWER
|
|
bool "Input event power"
|
|
depends on RT_USING_INPUT
|
|
default y
|
|
|
|
config RT_INPUT_UAPI
|
|
bool "Input event Unix API"
|
|
depends on RT_USING_INPUT
|
|
depends on RT_USING_KTIME
|
|
depends on RT_USING_POSIX_DEVIO
|
|
default n
|
|
default y if RT_USING_SMART
|
|
|
|
config RT_INPUT_UAPI_EVENT_MAX
|
|
int "Events storage max"
|
|
depends on RT_INPUT_UAPI
|
|
default 128
|
|
|
|
config RT_UAPI_FAKE_BLOCK
|
|
bool "Events fake when block"
|
|
depends on RT_INPUT_UAPI
|
|
default y
|
|
|
|
if RT_USING_INPUT
|
|
rsource "joystick/Kconfig"
|
|
rsource "keyboard/Kconfig"
|
|
rsource "misc/Kconfig"
|
|
rsource "touchscreen/Kconfig"
|
|
endif
|