Sending a CR or Clearscreen character with "FullDuplexSerial"??????
i seem to be having a little trouble sending a CR or CLS character to my serial out. everything else works ok...
CON
_clkmode = xtal1 + pll16x
_xinfreq = 5_000_000
Delay = 1000
OBJ
ser : "FullDuplexSerial"
PUB main
ser.start(30, 31, 0, 9600)
repeat
waitcnt(clkfreq / 1000 * Delay+ cnt)
ser.str(string("hello"))
waitcnt(clkfreq / 1000 * Delay + cnt)
ser.str($13) {im not sure if im doing this right, but this is where id like to send the CR character}

Comments
BTW do you know what decimal is for CLS??
ill look into it and see if it accepts CLS characters