Newer
Older
barebox / dts / Bindings / iio / adc / adc.txt
@Sascha Hauer Sascha Hauer on 14 Jan 2019 454 bytes dts: update to v5.0-rc1
Common ADCs properties

Optional properties for child nodes:
- bipolar : Boolean, if set the channel is used in bipolar mode.
- diff-channels : Differential channels muxed for this ADC. The first value
		specifies the positive input pin, the second value the negative
		input pin.

Example:
	adc@0 {
		compatible = "some,adc";
		...
		channel@0 {
			bipolar;
			diff-channels = <0 1>;
			...
		};

		channel@1 {
			diff-channels = <2 3>;
			...
		};
	};