STM32F7 - using SPI (slave) with DMA to set a flag (I.E. no interrupts)
We are trying to use SPI1 as a slave to receive 11 bytes of data per transaction. I.E. SPI1_RX --> my_data_array[11] When an 11-byte transaction is received, we want the DMA to raise a flag that we will check (we can't afford to use interrupts, a...