I need someone help getting Serin timeout to work.
If there is no data on PORTB.1 (pin = 0V) after a delay I need to jump out of Serin. I wait for "A" sync and store the next byte M.
My Serin works until data stops then hangs forever.
My Serin2 hangs always.

Test1:
Pause 110
SerIn PORTB.1,T2400,["A"],M ' Works until data stops then hangs
'serin2 PORTB.1,t2400,2000,Test2,[wait("A"),M] ' hangs
SerOut SO,T2400,[I,line2,#j," ",#M]
TOGGLE PORTB.4
GOTO Test1
Test2:
SerOut SO,T2400,[I,line2,#j," "]
TOGGLE PORTB.4
GOTO Test1