Kconfig 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 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. endmenu