stm32h7 fastest gpio read using DMA
I would like read the gpio lines at fastest speed.
As example it is possible to read first 4 ports by reading:
uint16_t ports0123=GPIOC->IDR&0x000F; (it is very fast, takes 28 tics)
It is possible to read ports GPIO_PIN_0-15 by connecting GPIOC->IDR to a DMA?
and a fast DMA?
