Hi there
I'm trying to interface my Cortex M (Stellaris launchpad) to a small display that uses the NT75451 SPI interface.
However, I'm stuck with it because the display remains black.
As a base project I used the glcd library (http://agock.com/software/glcd-graphic-lcd-library/). This library has an implementation to the NT75451 with a parallel interface.
At init I setup the display with the sequence below; however, I'm not sure at all about it since my display has a very poor documentation...
Any idea what the problem could be? Wrong initialization?
Thanks for your help
----
GLCD_RESET_LOW(); // Display RESET line low
delay_ms(GLCD_RESET_TIME); // 1 ms delay
GLCD_RESET_HIGH();
glcd_command(0xE2); /* S/W RESET OK */
glcd_command(0xA2); /* LCD bias OK */
glcd_command(0xA0); /* ADC select OK */
glcd_command(0xC0); /* SHL Normal ?? */
// glcd_command(0x81); /* Ref vg select mode */
glcd_command(0x2F); /* Power control ?? */
glcd_command(0x22); /* reg resistor select ?? */
// glcd_command(0x8F); /* Ref vg select mode */
glcd_command(0xAF); /* Display ON */
The glcd_command() function correspond to a spi_write() with the A0 line low
-----