Timming
Code:
void WriteCtrl(BYTE Command)
{
if (checkbusyflag)
{
WaitDisplayReady();
}
SetPortVal(DATA, Command, 1);
SetPortVal(CONTROL, CDHI, 1);
SetPortVal(CONTROL, CDHI | WRLO | RDHI, 1);
SetPortVal(CONTROL, CDHI | WRLO | RDHI | CELO, 1);
SetPortVal(CONTROL, CDHI | WRLO | RDHI | CELO, 1);
SetPortVal(CONTROL, CDHI | WRLO | RDHI | CEHI, 1);
SetPortVal(CONTROL, CDLO, 1);
}
This is the code for the current write cycle, I compared this with the timming diagrams for the t6369c chip. I have the following suggestions:
/** Set C/D HI or LOW (Command or Data) - 20 ns*/
SetPortVal(CONTROL, CDHI, 1);
/** The timming diagram shows that the RD/WR and CE must be set
at the same time */
SetPortVal(CONTROL, CDHI | WRLO | RDHI | CELO, 1);
/** Data should only be placed on the data lines after CE low*/
SetPortVal(DATA, Command, 1);
/** Sleep to allow enough time for the chip select (CE) - 80 ns*/
Sleep(0);
SetPortVal(CONTROL, CDHI | WRLO | RDHI | CELO, 1);
/** Reset CE - 10 ns*/
SetPortVal(CONTROL, CDHI | WRLO | RDHI | CEHI, 1);
/** Reset CD */
SetPortVal(CONTROL, CDLO, 1);
I also used a logic analyzer to check the current timming... If anybody wants this timing, please mail me...
My current timing is based on
Application Notes for T6963C