2019-03-27 10:37 AM
Hello , I just bought STM32F429-DISC1 a few weeks ago.
I did the following :
Everything worked perfectly fine.
Then I put it in a box safely because I was busy with other things. Today, after a week or so I connected it again and observed the following things::
1. COM and PWR LEDs are RED (static).
2. The LCD Screen is stuck and completely white.
WHAT I CHECKED/Resolved ::
So , I draw the conclusion that the only problem is with the LCD screen.
Can someone guide me with any solution (As soon as possible) ?
Any help shall be appreciated.
2019-03-27 11:09 AM
The LED toggle program doesn't configure or set up the screen. You'll need to build an LCD orientated application and download that.
2019-03-28 04:03 AM
Hello @Tauqir Hassan , please drag & drop the attached .hex file to the flash drive letter linked to this kit and then press RESET button or power cycle the kit. Can you see the LCD display?
As noted by Clive, the code or project that you compile must make use of the LCD display.
For more details, see here:
2019-03-28 07:31 AM
@Tauqir Hassan , also review this thread:
https://community.st.com/s/question/0D50X00009XkXSgSAN/stm32f429-white-screen-flashing-com-led
2019-03-28 08:04 AM
@Community member I appreciate that you gave your suggestion. Although you are right about running a LCD oriented application but the LCD should start up automatically When one connects the device with the PC , as it initially did in my case before the problem occurred.
However I will act upon the suggestion and give you the feedback.
Thanks again !
2019-03-28 08:10 AM
>> but the LCD should start up automatically
That's really not how the world works, the backlight comes on because it is just a simple illuminating device. The LCD expects clocks, and sync signals, for a controller that knows nothing about the display it is connected too. All that unique information has to be set up by code you supply.
You had an application on the board that demo'd the display, you erased that code and replaced it with something that did something entirely different.
2019-03-28 08:19 AM
@Mon2 Thanks for your suggestion , I copied the hex file in the flash drive and pressed the reset button but the LCD is still white screened and when I plug out the USB from PC and then plug in again, the HEX file gets deleted automatically. I don't know if that's normal behavior.
2019-03-28 08:23 AM
>>You had an application on the board that demo'd the display, you erased that code and replaced it with something that did something entirely different.>>
Yes I think that's the issue. Let me run a LCD based program and I will let you know.