cancel
Showing results for 
Search instead for 
Did you mean: 

I'm working on stm32f469 discovery board for GUI application , using stm32cubemx 5.4 and graphics framework stemWin, where I want to display integers from 1 to 5, my delay function is not working I guess, only 1st value 1 is displaying on the screen.

SSabo.1
Associate

This is the application code, which I'm writing on GUI_App.c ,

for (uint8_t i = 1; i < 5; i++) {

GUI_DispDecAt(i, (LCD_GetXSize() - 150) / 2, (LCD_GetYSize() - 20) / 2,

1);

GUI_Delay(1000);

}

can anyone please guide me through this, thanks in advance!

1 REPLY 1
xpress_embedo
Associate III

Hi @Community member​ 

Are you able to solve this problem?

I am also facing the similar issue, please help if you are able to find the solution