Hej,
i´m running stm32f469i-Discovery Board with CubeMX generated code in SW4STM32. When i run the source code below i will just get something like when i execute the code below:
----------------------------------
|Hello world
|0000
|
|
---------------------------------
I don´t see an upcounting number.
Furthermore it seems like the GUI is not constantly updating which to my understanding should be done via GUI_Delay().
- What am i missing?
- Is there something in the settings wrong?
- How is the Backround accting for updating the display?
Display All
Thank you very mutch in advance...
i´m running stm32f469i-Discovery Board with CubeMX generated code in SW4STM32. When i run the source code below i will just get something like when i execute the code below:
----------------------------------
|Hello world
|0000
|
|
---------------------------------
I don´t see an upcounting number.
Furthermore it seems like the GUI is not constantly updating which to my understanding should be done via GUI_Delay().
- What am i missing?
- Is there something in the settings wrong?
- How is the Backround accting for updating the display?
C Source Code
- ******************************************************************************
- */
- #include "GUI_App.h"
- #include "GUI.h"
- void GRAPHICS_MainTask(void) {
- /* USER CODE BEGIN GRAPHICS_MainTask */
- /* User can implement his graphic application here */
- /* Hello Word example */
- GUI_Init();
- GUI_Clear();
- int i = 0;
- /* USER CODE END GRAPHICS_MainTask */
- while(1)
- {
- GUI_DispString("Hello world!");
- GUI_DispDecAt( i++, 20,20,4);
- if (i > 99) {
- i = 0;
- }
- GUI_Delay(100);
- }
- }
- /*************************** End of file ****************************/
Thank you very mutch in advance...