Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
On Interrupt
Save System
If RCSTA.OERR = True Then 'any error reboot serial module..
RCSTA.CREN = 0
RCSTA.CREN = 1
Goto fin
Endif
serdata = RCREG '; get character(reading clears the RCIF)
If serdata > 0 Then
data(j) = serdata 'store data in buffer
j = j + 1
If j = 12 Then
j = 0
outptr = True
Endif
Endif
fin:
Resume