Re-combing the SPI slave problem now encountered
- 1 I am now doing the following configuration for SPI slave

I use the following spi slave send interface to send a single byte
```
LPSPI_DRV_SlaveTransfer(USE_SPI_INSATNCE,(const uint8 *)&send,(uint8 *)&rcv,(uint16)1);
```
When my spi master sends a byte of data, the slave can enter the interrupt, as shown below

- 2 When the chip select is configured as a normal GPIO port


I use the following spi slave send interface to send a single byte
```
LPSPI_DRV_SlaveTransfer(USE_SPI_INSATNCE,(const uint8 *)&send,(uint8 *)&rcv,(uint16)1);
```
When my spi master sends a byte of data, the slave can enter the interrupt transmit error, as shown below

So I have doubts, can the spi slave CS select pin can be used as normal GPIO for rising edge and falling edge detection, reading SPI slave data?