大家好,最近需要透過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當中
感謝各位