Dear all,
I'm using two while loops conected via a queue for data aquisition in the first and data analysis in the second loop. I get a 2D array of binary data out of the data aquasition, but the queue elements want to have a string! So far I'm just using the first element of the array (item 0), convert it to a string and send it to the queue. But with this I throw valueable Data away, but if I use a loop to convert every item of the array to a string than the repetition of the main data aquisition loop slows down and the buffer of my DAQ-board run over, loosing data, because there can be up 3000 data points per one reading of the buffer!
I know, that you can convert an array of numbers to an array of string with the "Number to S
tring"-function, but than you still have an array that the queue do not accept.
Is there a way to convert an array as discriped without using a loop or losing to much time!
(Well, so far I use a dual-pentium III system with 550MHz and I think it be enough processor-power for this, or?)