Hello.
I am trying the CFA632 test program, and I saw that sometimes the LCD does not print a character, and in my Linux console I get the "SendByte() failed" message.
I've modified the program, adding a little sleep time after each character sent.
Here is the code:
Now it sends the characters correctly, but the result is a slowdown in the speed in printing to the display.
How can I assure that the characters arrives well in the display without the slowdown?
Thanks
Luis
I am trying the CFA632 test program, and I saw that sometimes the LCD does not print a character, and in my Linux console I get the "SendByte() failed" message.
I've modified the program, adding a little sleep time after each character sent.
Here is the code:
Code:
void SendString(char *data)
{
while(*data){
SendByte(*data++);
usleep(50);
}
}
How can I assure that the characters arrives well in the display without the slowdown?
Thanks
Luis
Looking for additional LCD resources? Check out our LCD blog for the latest developments in LCD technology.