Kconfig 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. # ST Microelectronics LSM6DSO 6-axis IMU sensor driver
  2. # Copyright (c) 2019 STMicroelectronics
  3. # SPDX-License-Identifier: Apache-2.0
  4. menuconfig LSM6DSO
  5. bool "LSM6DSO I2C/SPI accelerometer and gyroscope Chip"
  6. depends on I2C || SPI
  7. select HAS_STMEMSC
  8. select USE_STDC_LSM6DSO
  9. help
  10. Enable driver for LSM6DSO accelerometer and gyroscope
  11. sensor.
  12. if LSM6DSO
  13. choice LSM6DSO_TRIGGER_MODE
  14. prompt "Trigger mode"
  15. help
  16. Specify the type of triggering to be used by the driver.
  17. config LSM6DSO_TRIGGER_NONE
  18. bool "No trigger"
  19. config LSM6DSO_TRIGGER_GLOBAL_THREAD
  20. bool "Use global thread"
  21. depends on GPIO
  22. select LSM6DSO_TRIGGER
  23. config LSM6DSO_TRIGGER_OWN_THREAD
  24. bool "Use own thread"
  25. depends on GPIO
  26. select LSM6DSO_TRIGGER
  27. endchoice
  28. config LSM6DSO_TRIGGER
  29. bool
  30. if LSM6DSO_TRIGGER
  31. config LSM6DSO_THREAD_PRIORITY
  32. int "Thread priority"
  33. depends on LSM6DSO_TRIGGER_OWN_THREAD
  34. default 10
  35. help
  36. Priority of thread used by the driver to handle interrupts.
  37. config LSM6DSO_THREAD_STACK_SIZE
  38. int "Thread stack size"
  39. depends on LSM6DSO_TRIGGER_OWN_THREAD
  40. default 1024
  41. help
  42. Stack size of thread used by the driver to handle interrupts.
  43. endif # LSM6DSO_TRIGGER
  44. config LSM6DSO_ENABLE_TEMP
  45. bool "Enable temperature"
  46. help
  47. Enable/disable temperature
  48. config LSM6DSO_SENSORHUB
  49. bool "Enable I2C sensorhub feature"
  50. help
  51. Enable/disable internal sensorhub. You can enable
  52. a maximum of two external sensors (if more than two are enabled
  53. the system would enumerate only the first two found)
  54. if LSM6DSO_SENSORHUB
  55. config LSM6DSO_EXT_LIS2MDL
  56. bool "Enable LIS2MDL as external sensor"
  57. default y
  58. config LSM6DSO_EXT_LPS22HH
  59. bool "Enable LPS22HH as external sensor"
  60. default y
  61. config LSM6DSO_EXT_HTS221
  62. bool "Enable HTS221 as external sensor"
  63. config LSM6DSO_EXT_LPS22HB
  64. bool "Enable LPS22HB as external sensor"
  65. endif # LSM6DSO_SENSORHUB
  66. menu "Attributes"
  67. config LSM6DSO_GYRO_FS
  68. int "Gyroscope full-scale range"
  69. default 0
  70. help
  71. Specify the default gyroscope full-scale range.
  72. An X value for the config represents a range of +/- X degree per
  73. second. Valid values are:
  74. 0: Full Scale selected at runtime
  75. 125: +/- 125dps
  76. 250: +/- 250dps
  77. 500: +/- 500dps
  78. 1000: +/- 1000dps
  79. 2000: +/- 2000dps
  80. config LSM6DSO_GYRO_ODR
  81. int "Gyroscope Output data rate frequency"
  82. range 0 10
  83. default 0
  84. help
  85. Specify the default accelerometer output data rate expressed in
  86. samples per second (Hz).
  87. 0: ODR selected at runtime
  88. 1: 12.5Hz
  89. 2: 26Hz
  90. 3: 52Hz
  91. 4: 104Hz
  92. 5: 208Hz
  93. 6: 416Hz
  94. 7: 833Hz
  95. 8: 1660Hz
  96. 9: 3330Hz
  97. 10: 6660Hz
  98. config LSM6DSO_ACCEL_FS
  99. int "Accelerometer full-scale range"
  100. default 0
  101. help
  102. Specify the default accelerometer full-scale range.
  103. An X value for the config represents a range of +/- X G. Valid values
  104. are:
  105. 0: Full Scale selected at runtime
  106. 2: +/- 2g
  107. 4: +/- 4g
  108. 8: +/- 8g
  109. 16: +/- 16g
  110. config LSM6DSO_ACCEL_ODR
  111. int "Accelerometer Output data rate frequency"
  112. range 0 10
  113. default 0
  114. help
  115. Specify the default accelerometer output data rate expressed in
  116. samples per second (Hz).
  117. 0: ODR selected at runtime
  118. 1: 12.5Hz
  119. 2: 26Hz
  120. 3: 52Hz
  121. 4: 104Hz
  122. 5: 208Hz
  123. 6: 416Hz
  124. 7: 833Hz
  125. 8: 1660Hz
  126. 9: 3330Hz
  127. 10: 6660Hz
  128. endmenu
  129. endif # LSM6DSO