Kconfig 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. #
  2. # Temperature sensor drivers
  3. #
  4. menu "Temperature sensors"
  5. config MAXIM_THERMOCOUPLE
  6. tristate "Maxim thermocouple sensors"
  7. depends on SPI
  8. select IIO_BUFFER
  9. select IIO_TRIGGERED_BUFFER
  10. help
  11. If you say yes here you get support for the Maxim series of
  12. thermocouple sensors connected via SPI.
  13. Supported sensors:
  14. * MAX6675
  15. * MAX31855
  16. This driver can also be built as a module. If so, the module will
  17. be called maxim_thermocouple.
  18. config HID_SENSOR_TEMP
  19. tristate "HID Environmental temperature sensor"
  20. depends on HID_SENSOR_HUB
  21. select IIO_BUFFER
  22. select IIO_TRIGGERED_BUFFER
  23. select HID_SENSOR_IIO_COMMON
  24. select HID_SENSOR_IIO_TRIGGER
  25. help
  26. Say yes here to build support for the HID SENSOR
  27. temperature driver
  28. To compile this driver as a module, choose M here: the module
  29. will be called hid-sensor-temperature.
  30. config MLX90614
  31. tristate "MLX90614 contact-less infrared sensor"
  32. depends on I2C
  33. help
  34. If you say yes here you get support for the Melexis
  35. MLX90614 contact-less infrared sensor connected with I2C.
  36. This driver can also be built as a module. If so, the module will
  37. be called mlx90614.
  38. config TMP006
  39. tristate "TMP006 infrared thermopile sensor"
  40. depends on I2C
  41. help
  42. If you say yes here you get support for the Texas Instruments
  43. TMP006 infrared thermopile sensor.
  44. This driver can also be built as a module. If so, the module will
  45. be called tmp006.
  46. config TMP007
  47. tristate "TMP007 infrared thermopile sensor with Integrated Math Engine"
  48. depends on I2C
  49. help
  50. If you say yes here you get support for the Texas Instruments
  51. TMP007 infrared thermopile sensor with Integrated Math Engine.
  52. This driver can also be built as a module. If so, the module will
  53. be called tmp007.
  54. config TSYS01
  55. tristate "Measurement Specialties TSYS01 temperature sensor using I2C bus connection"
  56. depends on I2C
  57. select IIO_MS_SENSORS_I2C
  58. help
  59. If you say yes here you get support for the Measurement Specialties
  60. TSYS01 I2C temperature sensor.
  61. This driver can also be built as a module. If so, the module will
  62. be called tsys01.
  63. config TSYS02D
  64. tristate "Measurement Specialties TSYS02D temperature sensor"
  65. depends on I2C
  66. select IIO_MS_SENSORS_I2C
  67. help
  68. If you say yes here you get support for the Measurement Specialties
  69. TSYS02D temperature sensor.
  70. This driver can also be built as a module. If so, the module will
  71. be called tsys02d.
  72. endmenu