Kconfig 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 LIDAR_LITE_V2
  18. tristate "PulsedLight LIDAR sensor"
  19. select IIO_BUFFER
  20. select IIO_TRIGGERED_BUFFER
  21. depends on I2C
  22. help
  23. Say Y to build a driver for PulsedLight LIDAR range finding
  24. sensor.
  25. To compile this driver as a module, choose M here: the
  26. module will be called pulsedlight-lite-v2
  27. config SRF04
  28. tristate "Devantech SRF04 ultrasonic ranger sensor"
  29. depends on GPIOLIB
  30. help
  31. Say Y here to build a driver for Devantech SRF04 ultrasonic
  32. ranger sensor. This driver can be used to measure the distance
  33. of objects. It is using two GPIOs.
  34. To compile this driver as a module, choose M here: the
  35. module will be called srf04.
  36. config SX9500
  37. tristate "SX9500 Semtech proximity sensor"
  38. select IIO_BUFFER
  39. select IIO_TRIGGERED_BUFFER
  40. select REGMAP_I2C
  41. depends on I2C
  42. help
  43. Say Y here to build a driver for Semtech's SX9500 capacitive
  44. proximity/button sensor.
  45. To compile this driver as a module, choose M here: the
  46. module will be called sx9500.
  47. config SRF08
  48. tristate "Devantech SRF08 ultrasonic ranger sensor"
  49. depends on I2C
  50. help
  51. Say Y here to build a driver for Devantech SRF08 ultrasonic
  52. ranger sensor. This driver can be used to measure the distance
  53. of objects.
  54. To compile this driver as a module, choose M here: the
  55. module will be called srf08.
  56. endmenu