Hi :
Here is the initialization in C:
Hi :
Here is the initialization in C:
HI!
nrfx_spis_config_t spis_config = NRFX_SPIS_DEFAULT_CONFIG(6,9,8,10);
Try using pins from port 1 instead.

https://docs.nordicsemi.com/bundle/ps_nrf54L15/page/overview.html
NRF_GPIO_PIN_MAP(1,4) // port 1 , pin 4
For SCK signal, this need to be a Clock pin. https://docs.nordicsemi.com/bundle/ps_nrf54L15/page/chapters/pin.html#ariaid-title3 , so e.g. this could be P1.04
This pin has been used for uart. And I use the P1.03 for SCK. There is still no way to communicate. 
May I ask if I need to enable the SPI clock? If so, how should I do it?
No, you are the SPIS(slave) here, it's the other device, the SPIM(master) that generates the clock.
Do you have any log output (e.g. from UART backend) that could tell us more about the issue?
No, you are the SPIS(slave) here, it's the other device, the SPIM(master) that generates the clock.
Do you have any log output (e.g. from UART backend) that could tell us more about the issue?
yes, uart can output log. This is main func. 
here is spis callback func: