大家好,最近需要透过Jetson Device读取 ds18b20温度传感器
然后看到Kernel的Documentation有一个部分
Documentation/devicetree/bindings/w1
onewire {
compatible = "w1-gpio";
gpios = <&gpio 0 GPIO_ACTIVE_HIGH>;
battery {
// ...
};
};
想要将上面device tree加入装置,并透过sysfs去读取传感器
但无奈看不懂<&gpio 0 GPIO_ACTIVE_HIGH>,要如何将GPIO指定到device tree当中
感谢各位