using the StreamIn instruction
When specifying a Data Buffer Block
Does it Store the data byte for byte received or characters received? For instance if I receive 1 byte containing 2 characters, does it store the 2 characters in separate bytes or 1 byte as it is received. If you have the terminator characters unchecked, does it store those bytes or does it strip them out?
Here is the issue
When I receive the data into a Long String, I get 107 characters when I check to look for the termination Characters
When I uncheck that box and store it in a data buffer and wait for a timeout, the instruction receives 96 bytes and no sign of termination characters in the data block buffer. Just trying to make sense of what is going on. First time I am trying to write a protocol and it won't be the last.