2024-02-29 05:53 PM
I am working on STM32H750B-DK and created a project using TouchGFX Designer (version 4.23.0), flash the code using Touchgfx Designer, and it's working well. but I will import the same project in STM32CubeIDE (version 1.14.1) , while executing Debugging mode the Display is hanging. the program breaks at the below function in the syscall. my project has multiple screens. the first screen is successfully teardown but the time of change screen to the next screen is the problem happens Please suggest any solutions
void _exit (int status)
{
_kill(status, -1);
while (1) {} /* Make sure we hang here */
}
2024-03-18 03:46 AM
Hello,
I can suggest you to compare the 2 different makefiles and see if something could explain the issue :
- STM32CubeIDE makefile in your STM32CubeIDE/Debug folder
- TouchGFX Makefile in gcc folder
You can also try to remove optimization for example and see if it helps.