Hello Nordic,
I'm working with NRF52840 (with SDK 16 and softdevice s140 7.0.1) in my project. I need to work with another chip through SPI. This chip is the master and NRF should be the slave.
The following picture is the required protocol flow to start the conversation and then send and receive data.

As you can see, the SS pin from SPI master doesn't change after fetch data or command data which is a problem, because as I understood from NRF52840 documents, the only way to get a NRF_DRV_SPIS_XFER_DONE event from SPIS and change TX and RX buffers is when select-pin goes high, which can't happen here due to this design.
Is there any way to perform SPIS without select pin and perform events based on the amount of data received or sent? or the absence of the clock signal?
Or more generally, is there anyway to change the SPIS functionality in a way that is suitable with this design?
Thank you.