Part Number: AM623
Other Parts Discussed in Thread: LM75B
Tool/software:
Hi,
I’m encountering a "Device or resource busy" error when trying to read the temperature sensor (LM75) connected to i2c-1. I’m sharing the device tree source (DTS) node for the I2C; could you please check if there’s any mistake? I’m also attaching a snapshot of the device for reference.
dts:
&main_i2c1 {
status = "okay";
pinctrl-names = "default";
pinctrl-0 = <&main_i2c1_pins_default>;
clock-frequency = <100000>;
tmp1@48 {
compatible = "st,stlm75";
reg = <0x48>;
status = "okay";
};
tmp2@49 {
compatible = "st,stlm75";
reg = <0x49>;
status = "okay";
};
rtc@51 {
compatible = "nxp,pcf8563";
reg = <0x51>;
#clock-cells = <0>;
status = "okay";
};
};

Regards Vikash