04-02-2007 06:11 PM
04-02-2007 06:14 PM
04-02-2007 06:16 PM
04-04-2007 04:33 AM
04-04-2007 09:51 AM
04-04-2007 03:35 PM
Specifically, here is the error message I am recieving:
Error 1097 occurred at Call Library Function Node in DppApi.lvlib:Get Dpp Data.vi->DppApi.lvlib:DppApi.vi
Possible reason(s):
LabVIEW: An exception occurred within the external code called by a Call Library Function Node. This might have corrupted LabVIEW's memory. Save any work to a new location and restart LabVIEW.
Thanks!
Kenny Neal
04-04-2007 04:33 PM
04-06-2007 02:10 PM
// Create a local variable which will be populated with data after DLL calllong databuffer[8192];// Make the DLL call, which will populate databufferlong numChannels = getDPP(myDPPObject, databuffer);// Display each element of the datafor (int i=0;i<8192;i++) { cout << "dataBuffer[" << i << "] = " << databuffer[i] << endl;}// here is the protoptye for the DLL call:// long GetDppData(unsigned long objptr, long *DataBuffer);