STM32H7 periodical TIM triggered SPI transfer w/o DMA?
On a STM32H745ZI-Q - Board I want to create periodical 4-byte SPI transfers triggered by a timer.
So far I got this working the following way:
TIM triggers DMA
DMA initiates the SPI transfer.
However, the SPI transfer timing (CS low) has a high jitter of 100 ns, which is not acceptable.
To reduce the jitter: Is there any known way to trigger the SPI transfer start directly by a timer on this specific MCU (from reading the RM, I don't think so)?
The data to be transfered could be written to the SPI FIFO in advance by an ISR triggered with a proper delay.
