Kconfig 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 MLX90614
  19. tristate "MLX90614 contact-less infrared sensor"
  20. depends on I2C
  21. help
  22. If you say yes here you get support for the Melexis
  23. MLX90614 contact-less infrared sensor connected with I2C.
  24. This driver can also be built as a module. If so, the module will
  25. be called mlx90614.
  26. config TMP006
  27. tristate "TMP006 infrared thermopile sensor"
  28. depends on I2C
  29. help
  30. If you say yes here you get support for the Texas Instruments
  31. TMP006 infrared thermopile sensor.
  32. This driver can also be built as a module. If so, the module will
  33. be called tmp006.
  34. config TSYS01
  35. tristate "Measurement Specialties TSYS01 temperature sensor using I2C bus connection"
  36. depends on I2C
  37. select IIO_MS_SENSORS_I2C
  38. help
  39. If you say yes here you get support for the Measurement Specialties
  40. TSYS01 I2C temperature sensor.
  41. This driver can also be built as a module. If so, the module will
  42. be called tsys01.
  43. config TSYS02D
  44. tristate "Measurement Specialties TSYS02D temperature sensor"
  45. depends on I2C
  46. select IIO_MS_SENSORS_I2C
  47. help
  48. If you say yes here you get support for the Measurement Specialties
  49. TSYS02D temperature sensor.
  50. This driver can also be built as a module. If so, the module will
  51. be called tsys02d.
  52. endmenu