concatenation
-
Hello!! I would like to concatenate the different lenghts of data (in Hex) which is from the same array.
What's ur problem. Clearify ur problem.
Divyang Mithaiwala System Engineer & Software Developer
-
What's ur problem. Clearify ur problem.
Divyang Mithaiwala System Engineer & Software Developer
am getting set of data output from a machine, as i should get the data output at a time, say for eg:1024 BYTES at a time in an array[1024], but am getting the data in chunks like Lenght: 512 0x20 0x65 0x40..........512 bytes Length:512 0x23 0x45 0xC 0xD......512 bytes Length's are varying, not constant all the time. how could i append the second set of data to the first set, say array[513]=0x23, array[514]=0x45....array[1024]. dont say MEMCPY; if i use it, again the data is being stored as chunks only.
-
am getting set of data output from a machine, as i should get the data output at a time, say for eg:1024 BYTES at a time in an array[1024], but am getting the data in chunks like Lenght: 512 0x20 0x65 0x40..........512 bytes Length:512 0x23 0x45 0xC 0xD......512 bytes Length's are varying, not constant all the time. how could i append the second set of data to the first set, say array[513]=0x23, array[514]=0x45....array[1024]. dont say MEMCPY; if i use it, again the data is being stored as chunks only.