Hi, I've just got my picoscope 2203 and got the Excel and VB6 example running.
Now I want to write a program, that changes the freq. of the "Signal Out" waits, measures, changes the freq. waits, measures ...
Now the problem. I haven't found an VB example for the "Singnal Out". I've tried it this way, but in runtime the error 453 "Can't find DLL entry point ps2000SetSigGenBuiltIn in C:\ps2000.dll" appears.
Can anyone help me ?
This is how I've tried it:
################################################
Declare Function ps2000SetSigGenBuiltIn Lib "c:\ps2000.dll" (ByVal handle As Integer, _
ByVal offsetVoltage As Long, _
ByVal pkToPk As Long, _
ByVal waveType As Integer, _
ByVal startFrequency As Double, _
ByVal stopFrequency As Double, _
ByVal increment As Double, _
ByVal dwellTime As Double, _
ByVal sweepType As Double, _
ByVal sweeps As Long) As Integer
################################################
Call ps2000SetSigGenBuiltIn(ps2000_handle, 0, 1000000, 0, 1000, 2000, 10, 10, 0, 1)
Cart
