I have converted instrument driver from CVI to LabVIEW. The problem that I am facing is that, after conversion, the arguments in some VI have changed to Boolean although they were of type 'int' in CVI.
Take a look at following example:
The function prototype for one function in CVI is
int CVIFUNC At71612a_patt_data_output_termination (int instrumentID, int terminationVolts);
But after conversion to LabVIEW, the VI has two inputs:
1. instrumentID of type 'int'
2. terminationVolts of type 'boolean'
Can experts on this forum help me understand why is this change of dataType from 'int' to 'boolean' and how can I get rid of this problem?
Appreciate your help.
Syed