10-19-2017 08:28 AM
Is there a way to use the "report generation toolkit" in the crio9066? I need to get some data from exel as on the image.
if u run this code on the computer it will work, but when I try to run it in the Crio equipment It says its not executable.
Solved! Go to Solution.
10-19-2017 09:13 AM
Crio9066 is a Linux Real Time Target and I found this: http://digital.ni.com/public.nsf/allkb/1C16BFEA5262E33E86257A46006FC92B and this:http://zone.ni.com/reference/en-XX/help/370622L-01/lvrtconcepts/rt_rtlinux/
saying that the report generation toolkit and some other features are not supported by linux RT systems, but those links are from labview 2013 does this still hold true for labview 2017 (the one I am using).
10-19-2017 01:58 PM
The Report Generation Toolkit uses ActiveX, so it needs an installed Excel application to create Excel files. Hence it will NOT run on any RT-Target.
Regards, Jens
10-20-2017 06:27 AM
10-21-2017 07:41 PM
got a work around.. well its not ideal but it works....
so I divided everything in 3 diferents Vis. lets call them V1, v2 and v3.
V1 (runs on computer): I open the exel, get the needed data and save in a global variable called "config data".
V2 (runs in the equipment Crio 9066): I read the data from the global variable "config data" wich have the actuation time of solenoid valves (time on, time off), coeficient of linear regression from the sensors among some other informations to set up my system, then I run the code wich will make the operations and collect some data, after it save the aquired data in a global variable called "data".
V3 (runs on computer) I get aquired data from the global variable "data" and save it in a TDMS file and also make a report.
as I sayed its not ideal (am using 3 diferents Vis, but works)....
is there a way to kinda link them (swap btween the Vis)? for example I am at V1, I want a buttom that when pressed it will closethe V1 and open up V2... is this possible to do?
10-24-2017 06:29 AM
I got it by using aplication control and invoker nodes.