LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Writing delimited spreadsheet with NI cRIO

Solved!
Go to solution

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,

Download All
0 Kudos
Message 1 of 4
(1,329 Views)
Solution
Accepted by topic author kepham

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?

0 Kudos
Message 2 of 4
(1,325 Views)

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?

0 Kudos
Message 3 of 4
(1,277 Views)

You only need to save the part before you built it into the array.

0 Kudos
Message 4 of 4
(1,273 Views)