I have a arduino due with a CTE Shield and an MD070SD 7" CPLD SDRAM TFT display. and it works good but I have to push the reset button to get it to initialize every time I power cycle it. If I have it connected to the PC and load a sketch then I don't have to manually press reset. How do I get around this. The documentation says the display need only a reset to initialize. Here is the code I use to initialize the Display. I would think the InitLCD would be doing a reset to get the TFT LCD going.
void setup() {
Serial.begin(9600);
RPM_Intrpt();
SPEED_Intrpt();
myGLCD.InitLCD(LANDSCAPE);
myGLCD.clrScr();
myGLCD.setColor (VGA_LIME);//Red,Green,Blue
myGLCD.fillScr (VGA_NAVY);
myGLCD.setBrightness(8);
DrawBackground();
}