09-29-2016 08:50 AM
output bit stream is "0000000001010000" but I want to delete 8 bit first
for last out put is "01010000". what should I do ?
thank you
Solved! Go to Solution.
09-29-2016 08:54 AM - edited 09-29-2016 08:55 AM
09-29-2016 11:10 AM - edited 09-29-2016 11:17 AM
If you want to modify input stream, I would use Decimate 1d Array.vi (after string to byte array)
More notes:
It is generally better to put convert inside loop
If you add 18 to reshape size after first loop, you will get the same input bit immediately - without extra build array (right click -> concatenate arrays in these cases) and second reshape.
Edit: May be I did not understand you. Do you want to remove only first byte from long message? Then array subset (or delete from array) will work. I thought it is 2 byte points, you want to get rid of the first byte for each of them. Overcomplicating...