Does that have anything to do with the LCDOUT command call in the initialisation instructions?
if you mean the highlighted text below , then yes that an error and should be removed for serial i/f usage
and may impact portb
Code:
ANSELB=0
ANSELC=0
ANSELA=0
Pause 500 ' LCD initialize time
lcdout $FE,1
gosub st7920_init 'graphic mode
gosub grf_clr
n=0
setfont FONT5x7
ARRAYWRITE BUFF,["- scroll test -"]
DMDSTR 18,0, Buff,1
ARRAYWRITE BUFF,["- some text to test -"]
DMDSTR 6,8, Buff,1
SETFONT bignum
bgcolour=0
direction=0
gosub show
main:
n= n+1
Shouldn't that line be s_xend=x1+s_xend-1 ?
my ver is , you are using an old version , the ver of grx.pbpmod in post 10 has vertical line fixed but fillrect got mangled
post 59 ver has both of those fixed , yet to discover what else may be broken
Code:
frect:
s_ystart=y0
s_yend=y0
while y1
s_xstart=x0
s_xend=x0+x1-1
gosub dLine
s_ystart=s_ystart+1
s_yend=s_ystart
y1=y1-1
wend
return
Bookmarks