Quote Originally Posted by jhorsburgh View Post
Hello Again,
rx:
serin rxpin,n1200,[$66],VALID,UTYPE,UID
if VALID = 22 then hit
goto rx

hit:
</code>

Jeremy
After a cursory glance at your code, I think the statement in RX should change to
Code:
rx:
        serin rxpin,n1200,[WAIT($66),VALID,UTYPE,UID]
Wait for $66 and then read the rest.