Kconfig 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #
  2. # Chemical sensors
  3. #
  4. menu "Chemical Sensors"
  5. config ATLAS_PH_SENSOR
  6. tristate "Atlas Scientific OEM SM sensors"
  7. depends on I2C
  8. select REGMAP_I2C
  9. select IIO_BUFFER
  10. select IIO_TRIGGERED_BUFFER
  11. select IRQ_WORK
  12. help
  13. Say Y here to build I2C interface support for the following
  14. Atlas Scientific OEM SM sensors:
  15. * pH SM sensor
  16. * EC SM sensor
  17. * ORP SM sensor
  18. To compile this driver as module, choose M here: the
  19. module will be called atlas-ph-sensor.
  20. config BME680
  21. tristate "Bosch Sensortec BME680 sensor driver"
  22. depends on (I2C || SPI)
  23. select REGMAP
  24. select BME680_I2C if I2C
  25. select BME680_SPI if SPI
  26. help
  27. Say yes here to build support for Bosch Sensortec BME680 sensor with
  28. temperature, pressure, humidity and gas sensing capability.
  29. This driver can also be built as a module. If so, the module for I2C
  30. would be called bme680_i2c and bme680_spi for SPI support.
  31. config BME680_I2C
  32. tristate
  33. depends on I2C && BME680
  34. select REGMAP_I2C
  35. config BME680_SPI
  36. tristate
  37. depends on SPI && BME680
  38. select REGMAP_SPI
  39. config CCS811
  40. tristate "AMS CCS811 VOC sensor"
  41. depends on I2C
  42. select IIO_BUFFER
  43. select IIO_TRIGGERED_BUFFER
  44. help
  45. Say Y here to build I2C interface support for the AMS
  46. CCS811 VOC (Volatile Organic Compounds) sensor
  47. config IAQCORE
  48. tristate "AMS iAQ-Core VOC sensors"
  49. depends on I2C
  50. help
  51. Say Y here to build I2C interface support for the AMS
  52. iAQ-Core Continuous/Pulsed VOC (Volatile Organic Compounds)
  53. sensors
  54. config VZ89X
  55. tristate "SGX Sensortech MiCS VZ89X VOC sensor"
  56. depends on I2C
  57. help
  58. Say Y here to build I2C interface support for the SGX
  59. Sensortech MiCS VZ89X VOC (Volatile Organic Compounds)
  60. sensors
  61. endmenu