FullDuplexSerial problem
I am trying to decode a serial 9600 baud data stream that has valid hex FF bytes in the data. Looking at FDS that appears to be the one byte that it won't receive. Anyone know if any of the other serial objects will work?

Comments
It would help if you posted your code.
CON _CLKMODE = XTAL1 + PLL16X _CLKFREQ = 80_000_000 OBJ pst : "Parallax Serial Terminal" serial : "FullDuplexSerial" PUB Main | inByte, numBytes pst.start(921600) serial.start( 1, 2, 00, 9_600) repeat inByte := serial.rxTime(500) if inByte > -1 pst.hex(inByte,2) pst.char(" ") numBytes += 1 if numBytes == 5 pst.char(13) numBytes := 0 else if numBytes > 0 numBytes := 0 pst.char(13)Tracy Allen's four port serial driver behaves much better. I've had projects where I had trouble receiving data (garbage data detected) with FDS but when I switched to Tracy's object the problems went away.
Another plus to using Tracy's driver is you can use the same driver for display your debug information.