From: deng on
when I use the 'lecroy_basic_driver.mdd' to communicate with lecroy waverunner 6051A osilloscope,it always returns an error that there is no 'driverData' property for device objects.Can you tell me how this mistake happens? Thanks!

detail:
interfaceObj = instrfind('Type', 'tcpip', 'RemoteHost', '192.168.1.5', 'RemotePort', 1861, 'Tag', '');
if isempty(interfaceObj)
interfaceObj = tcpip('192.168.1.5', 1861);
else
fclose(interfaceObj);
interfaceObj = interfaceObj(1);
end
deviceObj = icdevice('lecroy_basic_driver.mdd', interfaceObj);

When I run this code above ,it returns an error :

??? An error occurred while executing the driver create initialization code.
There is no 'DriverData' property for device objects.
If the error is not an instrument error, use MIDEDIT to inspect the driver.

Error in ==> readwaveform at 8
deviceObj = icdevice('lecroy_basic_driver.mdd', interfaceObj);
From: den qinyao on
Is there anybody kowning this problem?
Please tell me.
Thank's very much!