Kconfig 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # ST Microelectronics LIS2DW12 3-axis accelerometer driver
  2. # Copyright (c) 2019 STMicroelectronics
  3. # SPDX-License-Identifier: Apache-2.0
  4. menuconfig LIS2DW12
  5. bool "LIS2DW12 I2C/SPI accelerometer sensor driver"
  6. depends on I2C || SPI
  7. select HAS_STMEMSC
  8. select USE_STDC_LIS2DW12
  9. help
  10. Enable driver for LIS2DW12 accelerometer sensor driver
  11. if LIS2DW12
  12. choice LIS2DW12_TRIGGER_MODE
  13. prompt "Trigger mode"
  14. help
  15. Specify the type of triggering to be used by the driver.
  16. config LIS2DW12_TRIGGER_NONE
  17. bool "No trigger"
  18. config LIS2DW12_TRIGGER_GLOBAL_THREAD
  19. bool "Use global thread"
  20. depends on GPIO
  21. select LIS2DW12_TRIGGER
  22. config LIS2DW12_TRIGGER_OWN_THREAD
  23. bool "Use own thread"
  24. depends on GPIO
  25. select LIS2DW12_TRIGGER
  26. endchoice
  27. config LIS2DW12_TRIGGER
  28. bool
  29. if LIS2DW12_TRIGGER
  30. config LIS2DW12_THREAD_PRIORITY
  31. int "Thread priority"
  32. depends on LIS2DW12_TRIGGER_OWN_THREAD
  33. default 10
  34. help
  35. Priority of thread used by the driver to handle interrupts.
  36. config LIS2DW12_THREAD_STACK_SIZE
  37. int "Thread stack size"
  38. depends on LIS2DW12_TRIGGER_OWN_THREAD
  39. default 1024
  40. help
  41. Stack size of thread used by the driver to handle interrupts.
  42. config LIS2DW12_TAP
  43. bool "Tap and Tap-Tap detection"
  44. help
  45. Enable tap (single/double) detection
  46. endif # LIS2DW12_TRIGGER
  47. endif # LIS2DW12