PSSI with DMA on the STM32H7A
After an aborted attempt to get the PSSI interface on the STM32N6 to work with DMA, I have decided to try a different part, the STM32H7A. Running into a similar problem attempting to get the DMA to work.
Here is a snap-shot of what I see:

After receiving HAL_OK from HAL_PSSI_Receive_DMA(). I get the error interrupt with an error code of 0. As may be seen, there is a DMA Transfer error. This is running on the Nucleo-H7A3ZI-Q board. The clock tree has been changed to increase the clock speed:

The PSSI clock is produced by a PWM Timer and set to a frequency of 10MHz. Data is from a 12 bit ADC with an active high Ready. DE is not used. I have a pull-up on Ready. With HAL_PSSI_Receive_DMA() in a loop from a frame timer, each call returns HAL_OK followed by the error interrupt.
The PSSI setup:


I’ve been studying the examples given on this board for both the H5 and the H7. Whereas the N6 produced an immediate error response to multiple PSSI DMA attempts, the H7A does not. The DMA controller fails on both. What is preventing the DMA from working?
