Hi,
Okay, I see.
I suppose you get the screenshot of SPI timing with the SPI_MasterTransferBlocking() function.
Because you transfers one byte for each frame, if you use the code:
uint8_t SreBuff[]
assign SreByff array with interleaved 0x00,0xFF,0x00,0xFF...
xfer.txData=SreBuff;
xfer.dataSize=sizeof(SreBuff);
SPI_MasterTransferBlocking(EXAMPLE_SPI_MASTER,&xfer);
Pls have a try.
BR
XiangJun Rong