i2c internal pull up
hi
i am using stm32mp157caa3, there is a i2c slave operating at 3v3, while design, we have not connected( "forget")pull up line on i2c clk and data line,
so i tried enabling open-drain internal pull up in dtsi , but i2cdetect is not able to find the slave device
dtsi :
pins {
pinmux = <STM32_PINMUX('H', 11, AF5)>, /* I2C1_SCL */
<STM32_PINMUX('B', 9, AF4)>; /* I2C1_SDA */
bias-pull-up;
drive-open-drain;
slew-rate = <1>;
};
let me if my configuration and understanding is right ?
