2017-07-20 03:42 AM
Hi sir I'm working on STM32L476RG .While im using SPI peripheral in that im facing issue i.e in the clock gereration.
when clock generating according to resolution setting(ex-16 bit) after that 16 clock pulses its having some more delay (12us)after that again 16 clock pulses generating and again more delay ..every time its continuing ..whats the solution for that.
2017-08-03 01:38 AM
The SPI has 32 bit FIFO (Tx/Rx) so it should be possible to push 2x16 bit if sending data by polling or interrupt.
Otherwise, for maximum throughput, DMA should be used to run data block transfers.