cancel
Showing results for 
Search instead for 
Did you mean: 

Basic TouchGFX Designer Screen problem with display on STM32H750B-DK

ksale.1
Senior II

Hello, I have a problem to display the screen on my board, it is always blank white screen. Below is a simple Screen

:Screen1.jpg

It shows as a blank white screen on my board, please find attached relevant files lest it is a hardware problem. Please advise. 

Best regards

1 ACCEPTED SOLUTION

Accepted Solutions
JohanAstrup
ST Employee

Hello @ksale.1.

Without knowing for sure your issue sounds identical to this: https://community.st.com/t5/stm32-mcus-touchgfx-and-gui/blank-white-screen-coming-in-stm32h750b-board/m-p/879552#M46045

To fix the issue, add the KEEP keyword before the placement of bootloader.o:

.bootloader :
{
  . = ALIGN(4);
  KEEP (ExtMem_Boot/bootloader.o(*))
} >BOOTLOADER

The issue is fixed in the newest version of the TBS (v3.0.24).

Best regards,
Johan

View solution in original post

1 REPLY 1
JohanAstrup
ST Employee

Hello @ksale.1.

Without knowing for sure your issue sounds identical to this: https://community.st.com/t5/stm32-mcus-touchgfx-and-gui/blank-white-screen-coming-in-stm32h750b-board/m-p/879552#M46045

To fix the issue, add the KEEP keyword before the placement of bootloader.o:

.bootloader :
{
  . = ALIGN(4);
  KEEP (ExtMem_Boot/bootloader.o(*))
} >BOOTLOADER

The issue is fixed in the newest version of the TBS (v3.0.24).

Best regards,
Johan