Question
SPI vs DMA SPI.
Hi all,
I'm triyng to make the fastest possible driver to comunicate with an ILI9341.
My question is about DMA.
If I send a burst of bytes to the ILI9341, lets say 1000, is the DMA version faster than normal version?
I mean if
HAL_SPI_Transmit(HSPI_INSTANCE, BurstBuffer, 1000, 100);
Is different in speed of execution than
HAL_SPI_TransmitDMA(HSPI_INSTANCE, BurstBuffer, 1000);
