Can not use P2.0 P2.1 in nRF54L15 for I2C

Hi,

I have cut SB12 16 and connected SB17,18 and using P 2.01 as SCL (clcok pin), however, the I2C cannot work

&pinctrl {
    /omit-if-no-ref/ i2c22_default: i2c22_default {
        group1 {
            psels = <NRF_PSEL(TWIM_SCL, 2, 1)>,
                <NRF_PSEL(TWIM_SDA, 2, 0)>;
        };
    };

    /omit-if-no-ref/ i2c22_sleep: i2c22_sleep {
        group1 {
            psels = <NRF_PSEL(TWIM_SCL, 2, 1)>,
                <NRF_PSEL(TWIM_SDA, 2, 0)>;
            low-power-enable;
        };
    };
};

Related