Kconfig 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 SX9500
  28. tristate "SX9500 Semtech proximity sensor"
  29. select IIO_BUFFER
  30. select IIO_TRIGGERED_BUFFER
  31. select REGMAP_I2C
  32. depends on I2C
  33. help
  34. Say Y here to build a driver for Semtech's SX9500 capacitive
  35. proximity/button sensor.
  36. To compile this driver as a module, choose M here: the
  37. module will be called sx9500.
  38. config SRF08
  39. tristate "Devantech SRF08 ultrasonic ranger sensor"
  40. depends on I2C
  41. help
  42. Say Y here to build a driver for Devantech SRF08 ultrasonic
  43. ranger sensor. This driver can be used to measure the distance
  44. of objects.
  45. To compile this driver as a module, choose M here: the
  46. module will be called srf08.
  47. endmenu