Hi,
I would like to know how the below lines of code work in Main_Task in the GUI.
while (1) {
while (GUI_Exec1()) {
APPW_Exec();
}
APPW_Exec();
PRINTF("GUI task ...\r\n");
GUI_Delay(50);
}
why should we call APPW_Exec(); twice?
Will the PRINTF call which I have placed, be printed everytime?
I sometimes see that the serial messages are not printed and it looks like its still in GUI_EXEC1(). When will such situation occur?
Your help on this is highly appreciated.
Thanks.
I would like to know how the below lines of code work in Main_Task in the GUI.
while (1) {
while (GUI_Exec1()) {
APPW_Exec();
}
APPW_Exec();
PRINTF("GUI task ...\r\n");
GUI_Delay(50);
}
why should we call APPW_Exec(); twice?
Will the PRINTF call which I have placed, be printed everytime?
I sometimes see that the serial messages are not printed and it looks like its still in GUI_EXEC1(). When will such situation occur?
Your help on this is highly appreciated.
Thanks.