Sync DMA request every 72 bytes based on GPIO signal
I have an SPI peripheral that generates an external signal (EXTI) when a data record is ready. The data is then read over SPI by the MCU. The data record is 72 bytes.Right now I have an interrupt handler that starts the DMA process to read the next r...