Hello everybody,
my first post in this board is to question the experts:
The timeout to label function in Serin2 command, is to be considered like a GOTO or could be used like a GOSUB/RETURN?
Thanks in advance.
Printable View
Hello everybody,
my first post in this board is to question the experts:
The timeout to label function in Serin2 command, is to be considered like a GOTO or could be used like a GOSUB/RETURN?
Thanks in advance.
I', pretty sure it is only used as a goto, so if you wanted to use it as a return you would have to do something like
Code:get_data:
SerIn2 PORTC.7,813,2000,nodata,[x]
Serin2_return:
...
return
nodata:
...
...
goto serin2_return
David