2015-02-26 08:59 PM
my application works perfectly in debug mode.as soon as i get disconnected from debug mode and tries to restart application by pressing reset button ,lcd goes white on stm32f429.i mean i dont know whats happening inside chip.pls help on this.
Rgds,Kiran Kadam(KK) #stm32f429discovery2015-02-27 02:55 AM
Improper initialisation, or timing requirements not observed ?
LCD displays may need dozens/hundreds of milliseconds for startup. How about instrumenting your code, and analysing the output ? BTW, didn't you find a smaller text font ... ?2015-02-27 05:48 AM
Make sure you enable all the clocks you need, and initialize all the hardware. The debugger might initialize things it needs with the side effect that it appears to work with your code.
As indicated output diagnostic or telemetry information via a serial port, or use GPIO or LEDs to indicate progress through your code. Understand the flow, and where things may get stuck in loops.