STM32F746G stucks in TIM6_DAC_IRQHandler?
Hello,
everytime when I try to debug my program it stucks after the HAL_Init() in the main, so it never actually reaches the code provided by me.
As I stepped through the code, I noticed that it gets into a infinite loop where it always calls a function that handles the timer 6 global interrupt, DAC1 and DAC2 underrun error interrupts.
**
* @brief This function handles TIM6 global interrupt, DAC1 and DAC2 underrun error interrupts.
*/
void TIM6_DAC_IRQHandler(void)
{
/* USER CODE BEGIN TIM6_DAC_IRQn 0 */
/* USER CODE END TIM6_DAC_IRQn 0 */
HAL_TIM_IRQHandler(&htim6);
/* USER CODE BEGIN TIM6_DAC_IRQn 1 */
/* USER CODE END TIM6_DAC_IRQn 1 */
}I already tried to deactivate the global interrupts for the above mentioned in the NVIC configuration, but that's not possible.
I am using the STM32F746G-Discovery Board with CubeIDE 1.2.0 and TouchGFX 4.13.0.
Does anyone have a solution for this problem? I've already looked up several sources, but still got no clue.
Please don't blame me for asking for help with such a (presumably) simple problem, I'm relatively new to STM32's and still in the learning process :\ .
Thanks in advance!
