Kconfig 810 B

123456789101112131415161718192021222324252627282930313233343536
  1. menuconfig RT_USING_INPUT
  2. bool "Using Input device drivers"
  3. depends on RT_USING_DM
  4. select RT_USING_ADT
  5. select RT_USING_ADT_BITMAP
  6. default n
  7. config RT_INPUT_POWER
  8. bool "Input event power"
  9. depends on RT_USING_INPUT
  10. default y
  11. config RT_INPUT_UAPI
  12. bool "Input event Unix API"
  13. depends on RT_USING_INPUT
  14. depends on RT_USING_KTIME
  15. depends on RT_USING_POSIX_DEVIO
  16. default n
  17. default y if RT_USING_SMART
  18. config RT_INPUT_UAPI_EVENT_MAX
  19. int "Events storage max"
  20. depends on RT_INPUT_UAPI
  21. default 128
  22. config RT_UAPI_FAKE_BLOCK
  23. bool "Events fake when block"
  24. depends on RT_INPUT_UAPI
  25. default y
  26. if RT_USING_INPUT
  27. rsource "joystick/Kconfig"
  28. rsource "keyboard/Kconfig"
  29. rsource "misc/Kconfig"
  30. rsource "touchscreen/Kconfig"
  31. endif