hi, VaneB
Thanks to your suggestions, I have identified several discrepancies in the SPI Interrupt Status Register, which are illustrated in the following three figures.
First, let me explain the usage of SPI_0 and SPI_1 in the project: both work as slaves receiving data from the same master. Please note that only two lines are used: SCLK and MOSI. Because the slaves only need to receive data. If needed, I can connect the MISO line,but due to hardware limitations, there’s no CS line.
init all pins, SPI SR status like this

then, invoking the two functions, the status registers is as shown in below the figure.
Lpspi_Ip_AsyncTransmit(&SLAVE_EXTERNAL_DEVICE_1, IO1_MCU_Tx_Buffer, IO1_MCU_Rx_Buffer, 54, IO1_spi_callback);
Lpspi_Ip_AsyncTransmit(&SLAVE_EXTERNAL_DEVICE_2, IO2_MCU_Tx_Buffer, IO2_MCU_Rx_Buffer, 54, IO2_spi_callback);

then, SPI master send data, after a little moment, SPI_0 and SPI_1 SR status as show below,

It seems that, TDF of SPI_1 does't update, I don't know the reason.Do you have any suggestions for resolving this issue?