Armando,
I believe “str” it is referring to an array string not a string string. You should have something like this as the variable declare. (Let's change your variable name from VAR to RX_Var since VAR is reserved)
RX_Var var byte[4]
Then with your call, if your incoming data looks like this
49 ' ascii 1
50 ' ascii 2
51 ' etc.
52
53
54
hserin [skip 2, str RX_Var\4 \32 ]
Your data captured data will look like
RX_Var[0]=51
RX_Var[1]=52
RX_Var[2]=53
RX_Var[3]=54
If you need more help or suggestions, let us know ...
Paul Borgmeier
Salt Lake City, Utah
USA
Bookmarks