I have a quick question about configure i2c.
I have the following schematic:

And the following configuration for the nrf54l15:
&pinctrl {
i2c20_default: i2c20_default {
group1 {
psels = <NRF_PSEL(TWIM_SCL, 2, 1)>, <NRF_PSEL(TWIM_SDA, 2, 3)>;
bias-pull-up;
};
};
i2c20_sleep: i2c20_sleep {
group1 {
psels = <NRF_PSEL(TWIM_SCL, 2, 1)>, <NRF_PSEL(TWIM_SDA, 2, 3)>;
low-power-enable;
};
};
};
&i2c20 {
status = "okay";
clock-frequency = <I2C_BITRATE_STANDARD>;
pinctrl-0 = <&i2c20_default>;
pinctrl-1 = <&i2c20_sleep>;
pinctrl-names = "default", "sleep";
aht20@38 {
compatible = "aosong,aht20";
reg = <0x38>;
label = "AHT20";
};
};And the following in prj.conf:
Question: