Search found 169 matches

by Chris
Tue Feb 01, 2011 4:50 pm
Forum: Getting Started
Topic: using Visual studio to access a DrDaq (usb) on Windows 7
Replies: 6
Views: 8977

Re: using Visual studio to access a DrDaq (usb) on Windows 7

With the DrDAQ device connected to the PC, have a look in device manager to see if the Pico USB DrDAQ is listed (under Pico Technology Instruments) If it's not, run the installer, DPInst.exe installer, from the winusb folder of the SDK. Choose the exe from the x86 folder for 32 bit operating systems...
by Chris
Mon Jan 31, 2011 4:39 pm
Forum: Linux
Topic: fast streaming mode in PS2000 with 5MS/s
Replies: 18
Views: 107260

Re: fast streaming mode in PS2000 with 5MS/s

Can you replicate this problem using an equivalent sampling rate in PicoScope 6?

-Chris
by Chris
Mon Jan 31, 2011 4:28 pm
Forum: Getting Started
Topic: Driver for Windows 7 64bit
Replies: 4
Views: 11224

Re: Driver for Windows 7 64bit

What device is it that you want to use?

All our current USB devices will work under 64 bit operating systems, but our old parallel port products won't.
by Chris
Mon Jan 31, 2011 4:21 pm
Forum: General Software Discussions
Topic: problems using drivers with MinGW
Replies: 3
Views: 5121

Re: problems using drivers with MinGW

Not got any experience of using this compiler, but if you're having trouble getting it to work by creating an empty project, and importing the files from the SDK, would suggest creating a new 'Hello World' type project, then start by trying to use the ps2000_open_unit & ps2000_close_unit functions, ...
by Chris
Mon Jan 31, 2011 3:52 pm
Forum: C and C++
Topic: HRDLGetTimesAndValues or HRDLGetValues
Replies: 1
Views: 3590

Re: HRDLGetTimesAndValues or HRDLGetValues

PicoLog uses different functions to implement its recording methods, depending upon the parameters that are set for the device. What you want to achieve could be accomplished using any of the 3 recording methods available. Using the streaming method will give the most accurate time resolution, as it...
by Chris
Mon Jan 31, 2011 3:51 pm
Forum: General Software Discussions
Topic: Recording Method Confusion ADC24 Matlab/PicoLog
Replies: 1
Views: 3232

Re: Recording Method Confusion ADC24 Matlab/PicoLog

PicoLog uses different functions to implement its recording methods, depending upon the parameters that are set for the device. What you want to achieve could be accomplished using any of the 3 recording methods available. Using the streaming method will give the most accurate time resolution, as it...
by Chris
Fri Jan 28, 2011 3:04 pm
Forum: General Software Discussions
Topic: How to select Channel B (2203 + Delphi 7)
Replies: 3
Views: 5418

Re: How to select Channel B (2203 + Delphi 7)

You need to set up / select the channel you need before calling ps2000_run_straming_ns. You can't change channels while the device is streaming. See the Fast streaming mode section of the ps2000 programmers guide (ps2000pg.en.pdf) that can be downloaded with the sdk from the software section of the ...
by Chris
Thu Jan 27, 2011 10:32 am
Forum: General Software Discussions
Topic: Stuck in ps2000_get_times_and_values()
Replies: 1
Views: 3061

Re: Stuck in ps2000_get_times_and_values()

A delay of about 100ms before the ps2000_ready() call should help.
by Chris
Fri Jan 21, 2011 2:19 pm
Forum: C and C++
Topic: overflow in get_times_and_values
Replies: 6
Views: 9465

Re: overflow in get_times_and_values

Try running the PS3000 console example in the SDK.
This uses 0 as the value for timebase in runblock, to set the maximum sample rate, has 1 as the oversample value so it doesn't do any oversampling, which reduces the max sample rate.

-Chris.
by Chris
Thu Jan 20, 2011 2:41 pm
Forum: C and C++
Topic: reset
Replies: 2
Views: 4739

Re: reset

Hi Fernando

There isn't a 'reset' command to send to the unit, but if you call the 'closeUnit' command, you can then call the 'openUnit' command again to restart the unit.

The firmware is then uploaded to the unit to restart it.
by Chris
Mon Jan 17, 2011 1:50 pm
Forum: C and C++
Topic: overflow in get_times_and_values
Replies: 6
Views: 9465

Re: overflow in get_times_and_values

What data rate are you setting?

Are you using both channels?
by Chris
Mon Jan 17, 2011 1:22 pm
Forum: MATLAB
Topic: PS4000 Series - Callback Function Pointer for MATLAB&LABVIEW
Replies: 18
Views: 38906

Re: PS4000 Series - Callback Function Pointer for MATLAB&LAB

Hi Lasse The ps5000wrap.c code is provided in the sdk, which might help to show how the functions are implemented. The IsReady function returns the state of the _ready flag, which is set to 1 when the StreamingCallBack function is called to indicate that data is available to be downloaded. It does n...
by Chris
Wed Jan 12, 2011 11:11 am
Forum: USB PC Oscilloscopes
Topic: C# exemple
Replies: 1
Views: 3027

Re: C# exemple

We do not currently have a C# example for the 6000. The ps5000 has very similar function calls, and has a C# example, so that would be a good place to start looking into how to write your own application, but it will need some modification work to get it to work with the ps6000. We do not use VISA c...
by Chris
Thu Jan 06, 2011 10:38 am
Forum: MATLAB
Topic: PS4000 Series - Callback Function Pointer for MATLAB&LABVIEW
Replies: 18
Views: 38906

Re: PS4000 Series - Callback Function Pointer for MATLAB&LAB

Hi Lasse

We do not currently have any documentation for the psX000wrap.dll's, but the source code is provided in the SDK.

If you have any specific questions, please ask.


-Chris.
by Chris
Thu Jan 06, 2011 10:31 am
Forum: Linux
Topic: fast streaming mode in PS2000 with 5MS/s
Replies: 18
Views: 107260

Re: fast streaming mode in PS2000 with 5MS/s

At that sort of rate you'd be better using block mode to do your captures, but then there would be a gap between captures, which may take upto 50ms.

If you do need a continuous data stream, then you should limit your capture rate to 1MS/s

-Chris.