forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
ST VL53L0X ToF ranging sensor
 
Required properties:
   - compatible: must be "st,vl53l0x"
   - reg: i2c address where to find the device
 
Optional properties:
   - interrupts:    Interrupt for notifying that new measurement is ready.
           If no interrupt is specified, polling is used.
 
Example:
 
vl53l0x@29 {
   compatible = "st,vl53l0x";
   reg = <0x29>;
   interrupt-parent = <&gpio>;
   interrupts = <23 IRQ_TYPE_EDGE_FALLING>;
};