H755 Nucleo board and F769 Discovery board error handler on loading board example
I have a STM32F755ZI nucleo board. I am trying to load and run simple project from the board selector. So creating new stm32 project and selecting the board. Then i try to load the project and while it seems to load the stlink led blinks 3 colours and the load in the console goes up to finish the program goes to some error handler.
In the debug i see the next info
Type "apropos word" to search for commands related to "word".
Type "apropos word" to search for commands related to "word".
set *(unsigned int *)0xe00430a0&=~0x1
set *(int *)0xE000EDFC=*(int *)0xE000EDFC|0x7F0
set *(unsigned int *)0x5c001004|=0x3f
Temporary breakpoint 1, main () at ../Core/Src/main.c:107
107 timeout = 0xFFFF;
Program received signal SIGINT, Interrupt.
0x08000712 in main () at ../Core/Src/main.c:108
108 while((__HAL_RCC_GET_FLAG(RCC_FLAG_D2CKRDY) != RESET) && (timeout-- > 0));
Program received signal SIGINT, Interrupt.
0x08000720 in main () at ../Core/Src/main.c:108
108 while((__HAL_RCC_GET_FLAG(RCC_FLAG_D2CKRDY) != RESET) && (timeout-- > 0));
What is the problem what should i check. I was using STM32CubeIde 1.14.0 and i updated ot 1.14.1 and it is the same issue.
Previously i had some project that where running properly (which i started only by MCU selection and setting the rest manually) and they have now the same problem.
At the same time i have STM32F769DISCO board and i tried to load again the basic board example from the board selector. Program build properly and loads and then i get this problem :
Temporary breakpoint 1, main () at ../Core/Src/main.c:176
176 HAL_Init();
Program received signal SIGINT, Interrupt.
TIM6_DAC_IRQHandler () at ../Core/Src/stm32f7xx_it.c:171
171 {
Program received signal SIGINT, Interrupt.
Error_Handler () at ../Core/Src/main.c:1874
1874 while (1)
