maxim_thermocouple.txt 542 B

123456789101112131415161718192021
  1. Maxim thermocouple support
  2. * https://datasheets.maximintegrated.com/en/ds/MAX6675.pdf
  3. * https://datasheets.maximintegrated.com/en/ds/MAX31855.pdf
  4. Required properties:
  5. - compatible: must be "maxim,max31855" or "maxim,max6675"
  6. - reg: SPI chip select number for the device
  7. - spi-max-frequency: must be 4300000
  8. - spi-cpha: must be defined for max6675 to enable SPI mode 1
  9. Refer to spi/spi-bus.txt for generic SPI slave bindings.
  10. Example:
  11. max31855@0 {
  12. compatible = "maxim,max31855";
  13. reg = <0>;
  14. spi-max-frequency = <4300000>;
  15. };