Search found 12 matches

by MoJou
Tue Aug 02, 2016 8:28 am
Forum: MATLAB
Topic: Repeating Triggering 6402c
Replies: 15
Views: 17814

Re: Repeating Triggering 6402c

Hi Hitesh,

it would be great if you could add this feature. Actually i am using the streaming-mode and check for a certain threshold. If this threshold is exceeded the program writes the data into a binary file. So this is a kind of soft- trigger which is highly computationally expensive.


Regards
by MoJou
Tue Jul 26, 2016 11:40 am
Forum: MATLAB
Topic: Repeating Triggering 6402c
Replies: 15
Views: 17814

Re: Repeating Triggering 6402c

Hi Hitesh,

does the PicoScope 5444B support the timestamp feature?

Regards
MoJou
by MoJou
Mon Jul 25, 2016 1:09 pm
Forum: MATLAB
Topic: Repeating Triggering 6402c
Replies: 15
Views: 17814

Re: Repeating Triggering 6402c

Hi, with the updated driver dll files it works great. Do I have any chance to get absolute time information when I start a triggered measurement? For example I start a measurement but my Trigger occurs after 30 seconds. Is it possible to get this information (First Trigger at 30 sec, second Trigger ...
by MoJou
Tue Jul 19, 2016 2:00 pm
Forum: MATLAB
Topic: Repeating Triggering 6402c
Replies: 15
Views: 17814

Re: Repeating Triggering 6402c

Hi,

attached you can see a measurement where I am sending a weighted sine pulse and the corresponding signal on the second channel. There is no problem with the trigger-settings.

Actually I am using the 64Bit dll files from the SDK but I don't know where to look up the version number.


Regards
by MoJou
Fri Jul 15, 2016 1:39 pm
Forum: MATLAB
Topic: Repeating Triggering 6402c
Replies: 15
Views: 17814

Re: Repeating Triggering 6402c

I am using a Burst-Signal (Sine multiplied by a hamming-window) with arbitrary amplitude. When i use the PicoScope 6 software I can see the signal, and the repeated trigger does work. Am I trying to set up the same thing with the Matlab-Examples it does not. Regards ~edit~ I also can add the code, b...
by MoJou
Thu Jul 14, 2016 6:28 pm
Forum: MATLAB
Topic: Repeating Triggering 6402c
Replies: 15
Views: 17814

Re: Repeating Triggering 6402c

Yes, I know, it always tells Turning off trigger when using connect(ps4000aDeviceObj); This seems to be the default option for the device. Default Channel Setup:- ----------------------- (...) Turning off trigger... But afterwards the trigger is set using the commands triggerGroupObj = get(ps4000aDe...
by MoJou
Wed Jul 13, 2016 8:29 am
Forum: MATLAB
Topic: Repeating Triggering 6402c
Replies: 15
Views: 17814

Re: Repeating Triggering 6402c

Hello, I've got a similar problem. I try to set a threshold on channel A to for example 1700 mV. Therefore I use the example PS4000A_ID_Block_Example.m where the commands set(triggerGroupObj, 'autoTriggerMs', 0); set(triggerGroupObj, 'delay', 0); % Channel : 0 (ps4000aEnuminfo.enPS4000AChannel.PS400...
by MoJou
Wed Apr 20, 2016 7:02 am
Forum: MATLAB
Topic: Connect PicoScope 5444B within function
Replies: 2
Views: 5114

Re: Connect PicoScope 5444B within function

Hi, actually the problem seems to be in picotech_ps5000a_generic.mdd. I added the following outputs (test1 to test3): disp('test1') if(isstruct(evalin('base', 'ps5000aEnuminfo')) && isstruct(evalin('base', 'ps5000aStructs'))) disp('test2') % Do nothing - structures have been loaded else disp('test3'...
by MoJou
Tue Apr 19, 2016 4:29 pm
Forum: MATLAB
Topic: Connect PicoScope 5444B within function
Replies: 2
Views: 5114

Connect PicoScope 5444B within function

Hello, I am trying to connect the PicoScope 5444B within a function call. When I use the example-Scripts i.e. PS5000A_IC_Generic_Driver_Block.m everything is fine. Also sometimes connecting a device with for example function somefunction( void ) %SOMEFUNCTION Summary of this function goes here % Det...
by MoJou
Wed Feb 03, 2016 8:53 am
Forum: MATLAB
Topic: Use PicoScope 4225 as DAq
Replies: 4
Views: 7154

Re: Use PicoScope 4225 as DAq

Finally i set

Code: Select all

...
set(streamingGroupObj, 'streamingInterval', 100e-9);
set(streamingGroupObj, 'autoStop', 0);
...
now it works!. But at the moment i am not 100 % sure if the measurements are completely continous or if there are lags between the taken measurements. Have you got any hint?


Regards
by MoJou
Tue Feb 02, 2016 5:14 pm
Forum: MATLAB
Topic: Use PicoScope 4225 as DAq
Replies: 4
Views: 7154

Re: Use PicoScope 4225 as DAq

Hello Hitesh, i tried to set ... ps4000aDeviceObj = icdevice('picotech_ps4000a_generic', ''); ps4000aDeviceObj.Streaming.autoStop=0; ... after that I checked the value and load the driver. ... connect(ps4000aDeviceObj); ... The terminal shows up ... Default Streaming mode parameters:- Streaming inte...
by MoJou
Fri Jan 29, 2016 11:50 am
Forum: MATLAB
Topic: Use PicoScope 4225 as DAq
Replies: 4
Views: 7154

Use PicoScope 4225 as DAq

Hello, is it possible to use the PicoScope 4225 as DAq in combination with Matlab? I try to modify the PS400A_ID_Streaming_Example.m where i am limited to 2M Samples. My attemp is to Stream the data and copy it to my HDD using sprintf. The Problem is that I would have to clear the Buffer while measu...