2020-05-15 04:50 AM
Hello everyone
I'm trying to enable touchgfx on stm32h743bi.
I've done this before on the stm32f746 disco
This time I did exactly what I did on the disco stm322f746 but it didn't work. I think the problem is with the extra fmc settings being added to the cod.
I debugged the program and found out where the program would stop.
/ * Check this really is a semaphore, in which case the item size will be
0. * /
configASSERT (pxQueue-> uxItemSize == 0);
This code is located in the queue.c file. I don't know what this code does.
Please help me
2020-05-15 07:24 AM
Hello,
You can look at the Application template STM32H743I-EVAL as a reference. It's available in TouchGFX Designer. The code works so you should be able to compare and see why it's stopping.
/Alexandre
2020-05-15 08:48 AM
Thank you very much for your help