ads7828.txt 578 B

12345678910111213141516171819202122232425
  1. ads7828 properties
  2. Required properties:
  3. - compatible: Should be one of
  4. ti,ads7828
  5. ti,ads7830
  6. - reg: I2C address
  7. Optional properties:
  8. - ti,differential-input
  9. Set to use the device in differential mode.
  10. - vref-supply
  11. The external reference on the device is set to this regulators output. If it
  12. does not exists the internal reference will be used and output by the ads78xx
  13. on the "external vref" pin.
  14. Example ADS7828 node:
  15. ads7828: ads@48 {
  16. comatible = "ti,ads7828";
  17. reg = <0x48>;
  18. vref-supply = <&vref>;
  19. ti,differential-input;
  20. };