Gotcha!
How about variable length format (to allow for expansion).
Have device transfer the following series of bytes.
# bytes Contents
1 count of number of bytes that follow.
2 First Bytes of First value
3 Second byte of First value
4 First bytes of Second value
.
.
.
You could add a checksum of the total packet at the end if you want error detection.
LV can handle this format without any trouble. In fact one of the LV TCP/IP examples has an example where the client reads a bytes count from the port and uses that value to read the rest of the data.
I don't remember if you mentioned what dev system you where using.
Ben