You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
451 B
18 lines
451 B
* Maxim max11100 Analog to Digital Converter (ADC)
|
|
|
|
Required properties:
|
|
- compatible: Should be "maxim,max11100"
|
|
- reg: the adc unit address
|
|
- vref-supply: phandle to the regulator that provides reference voltage
|
|
|
|
Optional properties:
|
|
- spi-max-frequency: SPI maximum frequency
|
|
|
|
Example:
|
|
|
|
max11100: adc@0 {
|
|
compatible = "maxim,max11100";
|
|
reg = <0>;
|
|
vref-supply = <&adc0_vref>;
|
|
spi-max-frequency = <240000>;
|
|
};
|
|
|