2017-07-28 05:50 AM
I am trying to use STemWin 532 on a STM32f467 board. I created a framewin with 4 buttons using GuiBuilder and ran the application, but the display is scrambled. This is how a framewin with 4 buttons looks like on my display :
https://drive.google.com/open?id=0B-2BPm8Fn6lwVzlfZXEzM29pbG8
.I've also attached my 'main.c' and framewin source files. I tried adding an osDelay after GUI_Exec() but it did not work.
Any help is greatly appreciated.
Solved! Go to Solution.
2017-07-29 11:46 AM
I also had this problem.
I sold it...
https://arm-stm.blogspot.com/2017/04/stm32f746ng-discovery-ram-stemwin.html
2017-07-28 06:34 AM
Hello!
When you make a custom dialog, you must make also a function to paint the dialog
Inside your message callback function you must catch the case 'case WM_PAINT:'
When the GUI needs to paint the dialog(because is invalid by some movement ) gives this message to your dialog message map!!2017-07-28 09:07 AM
2017-07-29 11:46 AM
I also had this problem.
I sold it...
https://arm-stm.blogspot.com/2017/04/stm32f746ng-discovery-ram-stemwin.html
2017-07-31 12:25 AM
Thank you very much, this solved my problem.
2017-07-31 12:26 AM
Thank you for the advice.