Question
STemWin528
Posted on September 14, 2016 at 09:39
Hello, I'm using stm32f746 with cmsis-rtos. When I start STemWin without timer I didnt have any problem with showing information on the screen, but when I start one of the timer of MCU, my screen became white. I call GUI_Exec on every 1ms with thread
static void GUIThread(void const * argument)
{
// Gui background Task
while(1)
{
GUI_Exec(); /* Do the background work ... Update windows etc.) */
}
} My program enter in this function, but there is no information on the screen.