Hi Richard,
Just taking a quick look at your Include demo and I can only write 13 characters per line successfully... if 14 then the result is a wrap around and overwriting of the first char. Example below:
Code:
looper:
LCDCLR
; LCDSTR 6,0,"-Nokia-Demo-" ; Line 0, position 6.
LCDSTR 0,0,"I wonder what happens if the string is large?" ; = Rubbish on first line and "missing quote" error message.
; LCDSTR 0,0,"I wonder what?" ; = "? wonder what" [14 chars]
LCDSTR 0,0,"I wonder what" ; = "I wonder what" [13 chars only]
LCDC 0,4,"'" ; Line 4, position 0.
LCDC 25,5,"8" ; Line 5, position 25.
PAUSE 1000
GOTO looper
I'll test more later today and let you know if I find anything else needing a tweak. Again, great job.
Regards,
Bill
Bookmarks