Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/contrib/device-tree/Bindings/iio/impedance-analyzer/ad5933.txt
48524 views
1
Analog Devices AD5933/AD5934 Impedance Converter, Network Analyzer
2
3
https://www.analog.com/media/en/technical-documentation/data-sheets/AD5933.pdf
4
https://www.analog.com/media/en/technical-documentation/data-sheets/AD5934.pdf
5
6
Required properties:
7
- compatible : should be one of
8
"adi,ad5933"
9
"adi,ad5934"
10
- reg : the I2C address.
11
- vdd-supply : The regulator supply for DVDD, AVDD1 and AVDD2 when they
12
are connected together.
13
14
Optional properties:
15
- clocks : external clock reference.
16
- clock-names : must be "mclk" if clocks is set.
17
18
Example for a I2C device node:
19
20
impedance-analyzer@0d {
21
compatible = "adi,adxl345";
22
reg = <0x0d>;
23
vdd-supply = <&vdd_supply>;
24
clocks = <&ref_clk>;
25
clock-names = "mclk";
26
};
27
28