David Smith
New member
Hi,
Using a '634 v2.3, using CCS C
My display responds correctly to ctrl-M,J,L putc(13), putc(10) putc(12)....
but the other codes seem to have no effect.
For example: putc(4) should hide cursor... \004 = CTRL-D
Is there some add'l code I must transmit?
(I could find no embedded C code sample online, nor a reference in the data sheet).
Thank you.
Using a '634 v2.3, using CCS C
My display responds correctly to ctrl-M,J,L putc(13), putc(10) putc(12)....
but the other codes seem to have no effect.
For example: putc(4) should hide cursor... \004 = CTRL-D
Is there some add'l code I must transmit?
(I could find no embedded C code sample online, nor a reference in the data sheet).
Code:
...
putc(' '); //
putc(4); // hide cursor
clrscrn(); // sends ctrl-L
printf("* Test *\n\r");
Looking for additional LCD resources? Check out our LCD blog for the latest developments in LCD technology.