SPI4 error
Hi,
I'm trying to use SPI to communicate between two boards. On the MASTER side, i am using the HAL_SPI_Transmit(&hspi4, (uint8_t*)TxData,sizeof(TxData),100); and on the slave side i have enabled the interrupt, HAL_SPI_Receive_IT(&hspi4,RxData,1);
The message that i am trying to send is simply a 0x01. But it doesn't receive properly on the slave side....
Did anyone experience something like this?