PS2204a LabView trigger example doesn't work
PS2204a LabView trigger example doesn't work
I am using the latest github example for PS2000 Scope, the PicoScope2000ExampleFastStreaming.vi
It works, however I have problems setting the trigger. Only the negative Int16_t input for threshold work, there I see that the device stops after applying an appropriate signal. However, if I set positive values for the threshold, then the device triggers immediately, no matter what positive values are entered.
How to use positive values for threshold?
Thank you in advance.
Re: PS2204a LabView trigger example doesn't work
Re: PS2204a LabView trigger example doesn't work
0 is rising and 1 is falling
Technical Support Manager
Re: PS2204a LabView trigger example doesn't work
I'm already using Programmer's Guide. As you can see in the attachment, the values in LabView example on Git are completely wrong.
I have tested 0 and 1. Zero is working for rising edge, 1 and any other value is below threshold. I'm still not able to trigger on falling edge.
I've found this topic: topic14301.html
But I can't do the second point
2. Set the channel count on the device using the wrapper’s setChannelCount() function.
because there is no function setChannelCount() in the ps2000Wrap.h
Re: PS2204a LabView trigger example doesn't work
Technical Support Manager
Re: PS2204a LabView trigger example doesn't work
Re: PS2204a LabView trigger example doesn't work
I have updated the streaming example. Correcting the enum values for rising/falling triggers and also some other changes.
And today have done some more testing.
Yes do agree the falling trigger does seem to behave incorrectly.
Yes the trigger reports at sample 0 if the trigger level is below the signal, as you said a "below" trigger.
But does not trigger if you trigger set above the signal.
Also the trigger indicator in "Post capture information" cluster doesn't seem to work at all.
I tested the triggering PicoScope 7 with the scope in streaming mode it seems to work fine.
Also I tested our block LabVIEW block mode example the triggering works correctly for both rising and falling. (had to fix the control to allow negative values)
Another issue, "Channel A - Live" graph drops samples at the higher samples rates of 1-10us with one channel.
What sample rate are you using? Are you using our stream example?
I looked into this last week, I did rewrite the LabVIEW example to use new buffer code that I have been updating for the other API streaming examples. (I can send you copy of this code if you wish?)
But the issue seems to be related to the 2000wrap.dll as we tested MATLAB example that also uses the same wrapper dll, and had the same issue.
I not yet tested a streaming example that does not use the wrapper dll (python/C/C#), but expect this would not have these issues with dropping data and triggering.
The trigger issue in the streaming LabVIEW example could be caused by the wrapper dll
(Triggering values reported from GetFastStreamingDetails wrapper function.)
Also the "Post capture information" trigger values coming from the driver function -
ps2000_get_streaming_values_no_aggregation
don't seem work either.
Also as you noted - setChannelCount() function does not exist in the wrapper dll.
So this is mistake in the post - topic14301.html
Technical Specialist