I tried doing this, but could not come with a way of joining two 8
bit data into a 16 bit data.
Please let me know how this can be done.
A small example program would be helpful.
Thanks.
Dave.
Do the split as describe above. Then multiply the high byte array by 256
(100h) and add the low byte array.
You don't need to iterate over all elements in the array.
--
Rolf
Use the "Type Cast" function
(Function palette->Advanced->Data Manipulation->Type cast)
Wire your U8 array to the x terminal.
Wire an empty U16 (or I16) array to the typeterminal.
The output should now be a 16 bit array.
I think this should work an all platforms (both high endian and low endian
systems).
--
Rolf