Search found 8 matches

by maximus-ms
Fri Jun 13, 2014 8:24 pm
Forum: C and C++
Topic: ps2000abc.lib file for PicoScope2205MSO
Replies: 5
Views: 6830

Re: ps2000abc.lib file for PicoScope2205MSO

I use 32-bit driver.
Right, location is OK.
by maximus-ms
Tue Jun 10, 2014 7:01 am
Forum: C and C++
Topic: ps2000abc.lib file for PicoScope2205MSO
Replies: 5
Views: 6830

Re: ps2000abc.lib file for PicoScope2205MSO

Thank you for your reply.
But unfortunatly if I include file "ps2000abc.lib"(was converted by coff2omf) I get the compilation error "[Linker Error] Unresolved external '_ps2000aOpenUnit' referenced from D:\...".
Should I write something in any files of my project?
I use Borland Builder 6.

Thanks.
by maximus-ms
Mon Jan 14, 2013 12:49 pm
Forum: C and C++
Topic: Buffer overruns in fast streaming mode
Replies: 10
Views: 13866

Re: Buffer overruns in fast streaming mode

Dear, Hitesh.
Send me the working project in Buildr C++, please!
by maximus-ms
Mon Dec 17, 2012 12:15 pm
Forum: C and C++
Topic: Buffer overruns in fast streaming mode
Replies: 10
Views: 13866

Re: Buffer overruns in fast streaming mode

Hitesh wrote: Please download SDK R10.4.3.1 from our website (http://www.picotech.com/software.html) and try the dll that is in there.
So... it is no reason!! I have same results.
by maximus-ms
Fri Dec 14, 2012 8:45 am
Forum: C and C++
Topic: Buffer overruns in fast streaming mode
Replies: 10
Views: 13866

Re: Buffer overruns in fast streaming mode

Thank you very much.
I will try the SDK on Monday.
by maximus-ms
Thu Dec 13, 2012 1:49 pm
Forum: C and C++
Topic: Buffer overruns in fast streaming mode
Replies: 10
Views: 13866

Re: Buffer overruns in fast streaming mode

Hitesh wrote: Was your device supplied with a blue or white USB cable?
The device supplied with a blue USB cable. What does it mean?
by maximus-ms
Wed Dec 12, 2012 11:32 am
Forum: C and C++
Topic: Buffer overruns in fast streaming mode
Replies: 10
Views: 13866

Re: Buffer overruns in fast streaming mode

Thanks everybody. Have you tried reducing the sleep time? Of course. Firstly I used 1-10 ms delay, but later I saw size of bufer which I get from DLL is 32512 samples, so it are some empty calls before buffer reach 32512 size. So I desided use 32-33ms delay. Try calling the ps2000_overview_buffer_st...
by maximus-ms
Fri Dec 07, 2012 11:22 am
Forum: C and C++
Topic: Buffer overruns in fast streaming mode
Replies: 10
Views: 13866

Buffer overruns in fast streaming mode

I use BCB 6, PicoScope 2205. In my work I need 1MS/s sample ratio. So I use fast streaming mode. I use next code: ps2000_run_streaming_ns(handle_ps, 1, PS2000_US, 1000000 , 0, 1, 100000); // start of sampling while (run) { ps2000_get_streaming_last_values(handle_ps, ps2000FastStreamingReady); Sleep(...