Ok, I can give you some hints. As I don't know visual basic these examples will be in C but if you have any questions just let me know.
Some information about parallel port:
http://www.phm.lu/Documentation/Connectors/Parallel.asp
http://ra2modding.virtualave.net/lpt.html
http://www.doc.ic.ac.uk/~ih/doc/par/doc/regpins.html
When you write a value to the parallel port register the pins are set like this for example:
value -> pins/bits (every bit corresponds to a pin in parallel port)
0 -> 00000000
1 -> 00000001
2 -> 00000010
3 -> 00000011
4 -> 00000100
5 -> 00000101
6 -> 00000110
7 -> 00000111
8 -> 00001000
and so on...
I wrote this in quite a hurry so please let me know if you notice something strange in this.
First some definitions used in the code:
Code:
#define G_BASE 0x0200 // base address of T6963C graphics memory (for 240x64 display)
#define T_BASE 0x0000 // base address of T6963C text memory
#define BYTES_PER_ROW 40 // characters per row for 6x8 font
#define BASE 0x378 // lpt port base address
How do you have the font select set ? 6x8 or 8x8 font ? If it's 8x8 font then BYTES_PER_ROW will be 30.
Function to write a data byte to the LCD. This is for the Pollin wiring shown here:
http://www.skippari.net/lcd/t6963c_schem.htmlIt uses the timing sequence described in the
T6963C datasheet. (1,5MB)
Code:
void WriteData(USHORT Data)
{
// WaitDisplayReady(); // waits for the display to be ready before writing to it. this can be added if needed.
DlPortWritePortUshort(BASE + 2, 0); // C/D = L (Data)
DlPortWritePortUshort(BASE + 2, 2); // CE
DlPortWritePortUshort(BASE, Data); // put data byte to D0...D7 pins of LCD
DlPortWritePortUshort(BASE + 2, 3); // CE+WR
DlPortWritePortUshort(BASE + 2, 2); // CE
DlPortWritePortUshort(BASE + 2, 0);
}
Write control byte to the LCD. Also uses timing sequence from datasheet.
Code:
void WriteCtrl(USHORT Command)
{
// WaitDisplayReady();
DlPortWritePortUshort(BASE, Command); // put control byte to D0...D7 pins of LCD
DlPortWritePortUshort(BASE + 2, 4); // C/D = H (ctrl)
DlPortWritePortUshort(BASE + 2, 4+2); // CE
DlPortWritePortUshort(BASE + 2, 4+3); // CE+WR
DlPortWritePortUshort(BASE + 2, 4+2); // CE
DlPortWritePortUshort(BASE + 2, 0);
}
Display initialization. Again datasheet is great help.
Steve Lawther's document may be easier to follow than Toshiba's original datasheet.
Code:
void InitLCD(void)
{
// Display init
WriteData(T_BASE & 0xFF); // Data1: LowAddress
WriteData(T_BASE >> 8); // Data2: HighAddress
WriteCtrl(0x40); // Command: 0x40 -> 01000000
WriteData(BYTES_PER_ROW); // Data1: Colums
WriteData(0); // Data2: 0
WriteCtrl(0x41); // Command: 0x41 -> 01000001
WriteData(G_BASE & 0xFF); // Data1: LowAddress
WriteData(G_BASE >> 8); // Data2: HighAddress
WriteCtrl(0x42); // Command: 0x42 -> 01000010
WriteData(BYTES_PER_ROW); // Data1: Colums
WriteData(0); // Data2: 0
WriteCtrl(0x43); // Command: 0x43 -> 01000011
// Internal CGROM Mode, OR Mode
WriteCtrl(0x80); // OR Mode // 80->10000000
WriteCtrl(0xa7); // cursor is 8 lines high
WriteData(0x00);
WriteData(0x00);
WriteCtrl(0x21); // put cursor at (x,y)
// DisplayMode
WriteCtrl(0x9D);
}
I don't have time to write more at the moment but let me know what needs more explanation and I'll get back to it later.