Configuring I2C in nrf54L15-PDK using NCS 2.7.0

I want to configure I2C of my nrf54L15-PDK using NCS 2.7.0. How can I do that what necessary changes do I need to make in DTS or Overlay file for it?

Parents Reply
  • &i2c21 {
        compatible = "nordic,nrf-twi";
        status = "okay";
        reg = <0xc7000 0x1000>;
        pinctrl-0 = <&i2c21_default>;
        pinctrl-names = "default";
        mysensor: mysensor@3c{
            compatible = "i2c-device";
            reg = <0x3c>;
            label = "MYSENSOR";
        };
       
       
    };



    &pinctrl {
        i2c21_default: i2c21_default {
            group1 {
                psels = <NRF_PSEL(TWIM_SCL, 1, 0)>, <NRF_PSEL(TWIM_SDA, 1, 1)>;
            };
        };
    };


    I have figured out this thing but now I am facing an issue that GPIO output voltage is 1.8v, but I need it at least 3v on my GPIO's.
    Is it possible to increase the output voltage of the GPIO's?
Children
No Data
Related