10-29-2020 05:25 PM
Hello!
I wanted to save my array I calculated using DAQmx using a Compact RIO. However when I use the write to delimited, I do not get a prompt that allows me to save the file. Is there a reason that this could be happening, I ensured that the cRIO is sharing the same network with my computer with IP address...
Thank you,
Solved! Go to Solution.
10-29-2020 05:49 PM
The RIO is an embedded system with its own file system and no UI. No way to pop up a dialog.
You can save it to the local linux file system and transfer it to the PC at the end or relay the data to the host system as you go.
Your code is also very faulty, because you are trying to write larger and larger amount of data, the data from the first iteration existing N times in the file. You probably only want to append the new data with each iteration, right?
10-30-2020 12:26 AM
Awesome, the information that you provided me for the cRIO is helpful. However, I am confused when you say the code is faulty, and yes I am wanting to append the new data for each iteration. Is there a way you would suggest improving this code?
10-30-2020 12:49 AM
You only need to save the part before you built it into the array.