lmp91000.txt 1002 B

123456789101112131415161718192021222324252627282930313233
  1. * Texas Instruments LMP91000 series of potentiostats
  2. LMP91000: http://www.ti.com/lit/ds/symlink/lmp91000.pdf
  3. LMP91002: http://www.ti.com/lit/ds/symlink/lmp91002.pdf
  4. Required properties:
  5. - compatible: should be one of the following:
  6. "ti,lmp91000"
  7. "ti,lmp91002"
  8. - reg: the I2C address of the device
  9. - io-channels: the phandle of the iio provider
  10. - ti,external-tia-resistor: if the property ti,tia-gain-ohm is not defined this
  11. needs to be set to signal that an external resistor value is being used.
  12. Optional properties:
  13. - ti,tia-gain-ohm: ohm value of the internal resistor for the transimpedance
  14. amplifier. Must be 2750, 3500, 7000, 14000, 35000, 120000, or 350000 ohms.
  15. - ti,rload-ohm: ohm value of the internal resistor load applied to the gas
  16. sensor. Must be 10, 33, 50, or 100 (default) ohms.
  17. Example:
  18. lmp91000@48 {
  19. compatible = "ti,lmp91000";
  20. reg = <0x48>;
  21. ti,tia-gain-ohm = <7500>;
  22. ti,rload = <100>;
  23. io-channels = <&adc>;
  24. };