STM32H745, MDMA_IRQHandler() is missing in stm32h7xx_it.c
I register MDMA call backs, for example XferBufferCpltCallback, XferBlockCpltCallback, etc. using the HAL_MDMA_RegisterCallback() function. But the callbacks never got hit. These callbacks are called from stm32h7xx_hal_mdma.c/HAL_MDMA_IRQHandler(). HAL_MDMA_IRQHandler() in turn is called from stm32h7xx_it.c/MDMA_IRQHandler(). However, in my source tree , both CM4 and CM7, DMA_IRQHandler() is not in stm32h7xx_it.c as generated from CubeMX 6.1.1. And MDMA ISR is not in the vector table in startup_stm32h745bitx.s
I have looked at NVIC1, NVIC2, MDMA in CubeMX and can't find anything that would get MDMA_IRQHandler() to be generated. I would aprreciate it if someone let me know how to solve this problem.
