LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Read data from dll

Solved!
Go to solution

I have a dll of a spectrum analyzer from which I have to automate a test procedure. Right now I am stuck in acquiring the data from the spectrum analyzer due to the wrong input commands for the function because I am confused between double* variable name and double *variable name. Ther required input command is Receive_Data_From_Dongle(int32_t hDongle, int32_t ID, double* rev_data, int32_t Data_Length); and what I am currently sending is Receive_Data_From_Dongle(int32_t hDongle, int32_t ID, double *rev_data, int32_t Data_Length);. Do I have to make any changes in the data type for input in the Parameter Type tab in call library function?

DLL file is also attached. Attached image contains the input commands for C and VB.

 


CLD Using LabVIEW since 2013
Download All
0 Kudos
Message 1 of 8
(3,567 Views)

Can you explain to me where you see a difference in your explanation between:

 

double* variable name and double *variable name

 

Similar what is the difference between:

 

Receive_Data_From_Dongle(int32_t hDongle, int32_t ID, double* rev_data, int32_t Data_Length);

and 

Receive_Data_From_Dongle(int32_t hDongle, int32_t ID, double *rev_data, int32_t Data_Length);

 

Also from the prototype in your image it would seem that the declaration is rather:

uint8_t Receive_Data_From_Dongle(HANDLE hDongle, int32_t &ID, double *rev_data, int32_t &Data_Length);

This is c++ speak and in standard C the same as:

uint8_t Receive_Data_From_Dongle(HANDLE hDongle, int32_t *ID, double *rev_data, int32_t *Data_Length);

Aside from the missing reference for the ID and Data Length parameter, my guess is (and please note it is a somewhat informed guess as I have not seen the documentation for this function at all which should document this) that your rev_data needs to be a PREALLOCATED array of Data_Length number of elements.

 

So configure the rev_data parameter as an Array of 8-byte Double, passed as Array Data Pointer, place an Initialize Array function in front of the Call Library Node to create an array of the desired length and also pass the same number used to initialize the array length to the Data_Length parameter. Then after the function returns, resize the array to the length returned back in the Data_length parameter.

 

The first parameter is a handle, which is a pointer sized integer. Configure it accordingly as a Numeric, pointer sized (unsigned) integer and use a 64-bit (unsigned) integer on the front panel to pass this value between the different VIs. This makes this VI library future safe if you ever move to a 64-bit DLL and 64-bit LabVIEW version.

Rolf Kalbermatter
My Blog
Message 2 of 8
(3,535 Views)
Thanks for your help. I have tried your sugggestion and obtained the output, but the thing is the output is a array of Zeros. Is there anything else that I might be missing? I have uploaded the document file for more information.

CLD Using LabVIEW since 2013
0 Kudos
Message 3 of 8
(3,499 Views)

The manual is certainly interesting but makes not much sense before we have established that the VI itself doesn't have fundamental issues. So why is there often this hesitation to post the VI someone did?

Especially for Call Library Node issues there are many things that can be done wrong and only by looking at the actual VI is it possible to diagnose such problems. Do not post an image only as that does not show many of the settings of the Call Library Node and if you are already busy please make sure to not post the VI in the greatest and latest LabVIEW version. Not everyone has the luxury to install the latest version on a workmachine, as we do work on serious projects that often take more than a year to develop and changing LabVIEW versions halfway is a sure way to introduce trouble in such projects, and even installing a new version alongside poses a certain risk.

So open your VI, select "File->Save for Previous Version" and then choose at least two versions or more earlier when you post a VI on the fora.

Rolf Kalbermatter
My Blog
Message 4 of 8
(3,489 Views)

Here is the vi which I have developed for the test.


CLD Using LabVIEW since 2013
0 Kudos
Message 5 of 8
(3,487 Views)
Solution
Accepted by topic author kartiknattar

So lets go through the different parameters:

 

return value: signed 32-bit integer                                         not really correct as the BOOLEAN corresponds to a 8-bit unsigned integer

hDongle; unsigned pointer sized integer                                great

ID: signed 32-bit nteger passed by Value                              wrong, passed as Pointer to Value

rev_Data: Array of 8 byte double, passed as array pointer    great

                 Minimum size uses the value from Data_Length  great

Data_Length signed 32-bit nteger passed by Value               wrong, passed as Pointer to Value

 

I did point out that the C++ reference operator (&) needs to be treated the same as the standard C reference operator (*)

 

Also it would be useful to use the return value of that function as it will indicate if it was successful or if there was an error. Most likely the function considered the values it saw because of the mis-configured parameters as nonsense and simply returned with an error.

 

When the function indicates success.the Data_Length parameter on the right side will most likely contain the number of effectively copied data  values, so you can use it to resize the array to the really relevant length.

 

Another recommendation is to not create a single VI that contains all the Call Library Nodes but make logical subVIs that contain one or sometimes two Call Library Nodes. This makes for a library of functions that you can easily reuse later on, rather than a single monster VI that you have to modify every time you want to change an aspect of your acquisition.

 

Another note: When calling Output_Serial_Number you pass in an empty string for the serial number. The function will attempt to write the serial string into that empty string and corrupt memory. You need to read the documentation for that function and see what is the maximum length this string can get and preallocate it in LabVIEW. The easiest way is to change the Minimum size in the Call Library Node to this number.

Rolf Kalbermatter
My Blog
Message 6 of 8
(3,479 Views)

You may want to read my answer again. I did add additional information to it while you already accepted it as solution! Smiley Very Happy

Rolf Kalbermatter
My Blog
0 Kudos
Message 7 of 8
(3,467 Views)

Thank you so much for your kind help, I was stuck in this since last 10 days. I am able to fetch the data now Smiley LOL


CLD Using LabVIEW since 2013
0 Kudos
Message 8 of 8
(3,464 Views)