SPI is not working at nrf54l15

I'm trying to establish an SPI connection, but I'm not getting any signal when measuring the pins with an oscilloscope.
This is my devicetree;

&spi00 {
    compatible = "nordic,nrf-spim";
    status = "okay";
    pinctrl-0 = <&spi00_default>;
    pinctrl-1 = <&spi00_sleep>;
    pinctrl-names = "default", "sleep";
    cs-gpios = <&gpio2 8 GPIO_ACTIVE_LOW>;

};
    spi00_default: spi00_default {
        group1 {
            psels = <NRF_PSEL(SPIM_SCK, 2, 1)>,
                <NRF_PSEL(SPIM_MOSI, 2, 2)>,
                <NRF_PSEL(SPIM_MISO, 2, 4)>;
        };
    };



    spi00_sleep: spi00_sleep {
        group1 {
            psels = <NRF_PSEL(SPIM_SCK, 2, 1)>,
                <NRF_PSEL(SPIM_MOSI, 2, 2)>,
                <NRF_PSEL(SPIM_MISO, 2, 4)>;
            low-power-enable;
        };
    };

Please create test functions so I can cool down.
This is a custom board with the SPI pins with the aforementioned connection.
Parents Reply Children
Related