Kconfig 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #
  2. # Proximity sensors
  3. #
  4. menu "Lightning sensors"
  5. config AS3935
  6. tristate "AS3935 Franklin lightning sensor"
  7. select IIO_BUFFER
  8. select IIO_TRIGGERED_BUFFER
  9. depends on SPI
  10. help
  11. Say Y here to build SPI interface support for the Austrian
  12. Microsystems AS3935 lightning detection sensor.
  13. To compile this driver as a module, choose M here: the
  14. module will be called as3935
  15. endmenu
  16. menu "Proximity and distance sensors"
  17. config ISL29501
  18. tristate "Intersil ISL29501 Time Of Flight sensor"
  19. depends on I2C
  20. select IIO_BUFFER
  21. select IIO_TRIGGERED_BUFFER
  22. select IIO_KFIFO_BUF
  23. help
  24. Say Y here if you want to build a driver for the Intersil ISL29501
  25. Time of Flight sensor.
  26. To compile this driver as a module, choose M here: the module will be
  27. called isl29501.
  28. config LIDAR_LITE_V2
  29. tristate "PulsedLight LIDAR sensor"
  30. select IIO_BUFFER
  31. select IIO_TRIGGERED_BUFFER
  32. depends on I2C
  33. help
  34. Say Y to build a driver for PulsedLight LIDAR range finding
  35. sensor.
  36. To compile this driver as a module, choose M here: the
  37. module will be called pulsedlight-lite-v2
  38. config RFD77402
  39. tristate "RFD77402 ToF sensor"
  40. depends on I2C
  41. help
  42. Say Y to build a driver for the RFD77420 Time-of-Flight (distance)
  43. sensor module with I2C interface.
  44. To compile this driver as a module, choose M here: the
  45. module will be called rfd77402.
  46. config SRF04
  47. tristate "Devantech SRF04 ultrasonic ranger sensor"
  48. depends on GPIOLIB
  49. help
  50. Say Y here to build a driver for Devantech SRF04 ultrasonic
  51. ranger sensor. This driver can be used to measure the distance
  52. of objects. It is using two GPIOs.
  53. To compile this driver as a module, choose M here: the
  54. module will be called srf04.
  55. config SX9500
  56. tristate "SX9500 Semtech proximity sensor"
  57. select IIO_BUFFER
  58. select IIO_TRIGGERED_BUFFER
  59. select REGMAP_I2C
  60. depends on I2C
  61. help
  62. Say Y here to build a driver for Semtech's SX9500 capacitive
  63. proximity/button sensor.
  64. To compile this driver as a module, choose M here: the
  65. module will be called sx9500.
  66. config SRF08
  67. tristate "Devantech SRF02/SRF08/SRF10 ultrasonic ranger sensor"
  68. select IIO_BUFFER
  69. select IIO_TRIGGERED_BUFFER
  70. depends on I2C
  71. help
  72. Say Y here to build a driver for Devantech SRF02/SRF08/SRF10
  73. ultrasonic ranger sensors with i2c interface.
  74. This driver can be used to measure the distance of objects.
  75. To compile this driver as a module, choose M here: the
  76. module will be called srf08.
  77. endmenu