kyawmyo
Guest
|
|
« on: August 27, 2008, 10:37:29 10:37 » |
|
Hi, MikroC dsPIC has Library function for Toshiba T6963C Graphic LCD. To initialize GLCD driver, we can use this function.
void T6963C_init(unsigned int w, unsigned int h, unsigned int fntW, unsigned int *data, unsigned int *cntrl, unsigned int bitwr, unsigned int bitrd, unsigned int bitcd, unsigned int bitreset);
Eg. T6963C_init(240, 128, 8, &PORTF, &PORTD, 5, 7, 6, 4) ;
Problem is MCU's LCD control or Data Pins are need to used under the same port to use that function. I got LCD driver design with Control Pins are in different Ports. So I can not use built in Library function to drive GLCD. Any idea to be able to use T6963C Graphic LCD built in function of MikroC dsPIC compiler?
Best Regards,
Kyaw Myo
|