vote up 0 vote down star

Hi,

I am trying to program an LCD (www.cloverlcd.com/pdf/S6A0069.pdf) with the PIC18F2321 microcontroller. I have got it to work in 8 bit mode and am now trying to convert it to 4 bit mode. All I am trying to do right now is get a blinking cursor on the top left of the LCD. With the code I have now, I get a blinking cursor but I also get some random symbols that do not resemble any character in the ASCII table. They look like a full 5x11 square with a couple squares in the middle missing, just really really random. Anyone know what causes these or how to get rid of them? Any help is greatly appreciated!!!

My code is below in case you want to check it out.

void LCDInitialization(void) {

COMPortCWithoutBusy(0x20);		//function set first nibble										
Delay1KTCYx(10);
COMPortCWithoutBusy(0x20);		//function set second nibble									
Delay1KTCYx(10);
//BusyEnable();
Delay1KTCYx(10);

COMPortCWithoutBusy(0x80);		//function set	third nibble										
Delay1KTCYx(10);
BusyEnable();
Delay1KTCYx(10);

COMPortCWithoutBusy(0x00);		//Turn on display and configure cursor settings first nibble
Delay1KTCYx(10);
COMPortCWithoutBusy(0xF0);		//Turn on display and configure cursor settings second nibble
Delay1KTCYx(10);
BusyEnable();
Delay1KTCYx(10);

COMPortCWithoutBusy(0x00);		//disp clear first nibble										
Delay1KTCYx(10);
COMPortCWithoutBusy(0x10);		//disp clear second nibble									
Delay1KTCYx(10);
BusyEnable();
Delay1KTCYx(10);

COMPortCWithoutBusy(0x00);		//entry mode set first nibble										
Delay1KTCYx(10);
COMPortCWithoutBusy(0x60);		//entry mode set second nibble									
Delay1KTCYx(10);
BusyEnable();
Delay1KTCYx(10);

}

void COMPortCWithoutBusy(char com) { LCDSetCommandMode(); Delay1KTCYx(100); PORTC = com; LCDCOMEnableWithoutBusy(); PORTC = 0; }

void LCDCOMEnableWithoutBusy(void) { Delay1KTCYx(10); PORTBbits.RB2 = 1; //enable high Delay1KTCYx(10); PORTBbits.RB2 = 0; //enable low Delay1KTCYx(10); }

void LCDSetCommandMode(void) { Delay1KTCYx(10); PORTBbits.RB0 = 0; Delay1KTCYx(10); }

flag
stackoverflow.com/questions/248949/… – paxdiablo Oct 31 '08 at 10:44
yea that is my partner on this project haha. – doekman Oct 31 '08 at 10:48
RJP, you may well have to contact Samsung for help on this one, it's VERY specific. – paxdiablo Oct 31 '08 at 11:37

closed as exact duplicate by paxdiablo Oct 31 '08 at 10:41

2 Answers

vote up 0 vote down

Here's the rest of the code that kind of got lost in the formatting in the original question

void COMPortCWithoutBusy(char com)
{
LCDSetCommandMode();
Delay1KTCYx(100);
PORTC = com;
LCDCOMEnableWithoutBusy();
PORTC = 0;
}

void LCDCOMEnableWithoutBusy(void)
{
Delay1KTCYx(10);
PORTBbits.RB2 = 1; 	//enable high
Delay1KTCYx(10);
PORTBbits.RB2 = 0;	//enable low	
Delay1KTCYx(10);
}

void LCDSetCommandMode(void)
{
Delay1KTCYx(10);
PORTBbits.RB0 = 0;
Delay1KTCYx(10);
}
link|flag
vote up 0 vote down

My guess is that p29 of the manual contains an error; the first row of data under "Function Set" should not be there.

Remove one of the

COMPortCWithoutBusy(0x20);

and see if it helps.

link|flag
No, that's a sneaky way to ensure that you can switch to 4-bit mode whether you're currently in 4-bit or 8-bit mode. – paxdiablo Oct 31 '08 at 10:47
I've already tried this method as well, it doesn't solve my problem. – doekman Oct 31 '08 at 10:49

Not the answer you're looking for? Browse other questions tagged or ask your own question.