User Activity

I use STM32H753IITx and there is space in RAM_D1 to use length 2*65536.I call like this: if (HAL_ADCEx_MultiModeStart_DMA(&hadc1, guiaAdc12Data, (uint32_t)(ADC12_MAX_COUNT * 2)) != HAL_OK) { Error_Handler(); }
What has TIM6 to do with this? I do use it for System Core, SYS, Timebase Source. Why can I not disable the global underrrun interrupt? I use DMA for ADC1 and 2 and BDMA for ADC3.At startup HAL_DAC_IRQHandler gets called, DAC_FLAG_DMAUDR1 is set and ...
Generated code in main.c looks like this and lacks function name for the second block./**  * Enable DMA controller clock */static void MX_BDMA_Init(void) { /* DMA controller clock enable */ __HAL_RCC_BDMA_CLK_ENABLE(); /* DMA interrupt init */ /* BD...