Search found 32 matches

by mosine
Thu Apr 06, 2017 4:27 pm
Forum: .Net Languages (C#, VB.Net, .)
Topic: Change Channel
Replies: 2
Views: 3765

Re: Change Channel

For information: I solved my problem.
The solution: when I must change channel, I close (Imports.CloseUnit) communication and restart it.

Thanks
by mosine
Thu Apr 06, 2017 8:50 am
Forum: .Net Languages (C#, VB.Net, .)
Topic: Change Channel
Replies: 2
Views: 3765

Change Channel

Hi, I'm developer a C# application with PicoScope 3204A. This morning, I have a new problem: when I change acquisition channel, I'll have a crash. I enable channel A and B. For change channel, I set trigger on new channel. This is my code: public bool CollectBlockTriggered(uint timebase, uint sample...
by mosine
Thu Apr 06, 2017 6:28 am
Forum: .Net Languages (C#, VB.Net, .)
Topic: Wrong Read
Replies: 12
Views: 9710

Re: Wrong Read

Hi Martin,
yesterday we checked the problem is hardware problem.
Thank you for your patience.

Have a nice day.
by mosine
Wed Apr 05, 2017 2:23 pm
Forum: .Net Languages (C#, VB.Net, .)
Topic: Wrong Read
Replies: 12
Views: 9710

Re: Wrong Read

Hi Martin,
I check the situation by example console of SDK: same read.
by mosine
Wed Apr 05, 2017 2:03 pm
Forum: .Net Languages (C#, VB.Net, .)
Topic: Wrong Read
Replies: 12
Views: 9710

Re: Wrong Read

Hi Martin,
I followed your suggestion and I verified that all calls return PICO_OK.
PicoScope software read the same value.
by mosine
Wed Apr 05, 2017 12:52 pm
Forum: .Net Languages (C#, VB.Net, .)
Topic: Wrong Read
Replies: 12
Views: 9710

Re: Wrong Read

Hi Martin,
I attach the files.
by mosine
Wed Apr 05, 2017 11:19 am
Forum: .Net Languages (C#, VB.Net, .)
Topic: Wrong Read
Replies: 12
Views: 9710

Re: Wrong Read

Hi Martin,
I try your suggest and I don't resolve.
If I set Range_5V: read 2.5V .
If I set Range_10V: read 5V
If I set Range_20V: read 10V

I must read 7.5-7.7 V.

Thanks
by mosine
Tue Apr 04, 2017 3:38 pm
Forum: .Net Languages (C#, VB.Net, .)
Topic: Wrong Read
Replies: 12
Views: 9710

Re: Wrong Read

Hi Martin, Thank you for reply. This problem is very strange, because if I set range:5V and set probe:x10, my application read correctly. I can't set probe x10 for my scope. This is my code: timebase = 20000; _channelSettings[0].range = Imports.Range.Range_20V; CollectBlockImmediate(timebase, 100, 0...
by mosine
Tue Apr 04, 2017 8:06 am
Forum: .Net Languages (C#, VB.Net, .)
Topic: Info installation
Replies: 1
Views: 3219

Info installation

Hi,
is it possibile handle more picoscopes on the same application?

Thanks
by mosine
Mon Apr 03, 2017 3:43 pm
Forum: .Net Languages (C#, VB.Net, .)
Topic: Wrong Read
Replies: 12
Views: 9710

Wrong Read

Hi, I'm developing a c# application with PicoScope3204 and I have a read problem. I read correctly until 5V (amplitude signal from external board). If I set 7V on external board, I continue to read 5V. I set range: 20V for channel A and B. This is my code: timebase = 20000; CollectBlockImmediate(tim...
by mosine
Thu Mar 23, 2017 3:18 pm
Forum: .Net Languages (C#, VB.Net, .)
Topic: PicoScope3204 - multiple runBlock
Replies: 15
Views: 12203

Re: PicoScope3204 - multiple runBlock

Hi Martin,
I finally solved my problem.
I changed my code (very similar at SDK example):
- I open communication (init) with Picoscope by Form
- I create dll object and pass handle as constructor

I think that were thread problems between Form and dll.

Thanks for your patience.
by mosine
Thu Mar 23, 2017 7:19 am
Forum: .Net Languages (C#, VB.Net, .)
Topic: PicoScope3204 - multiple runBlock
Replies: 15
Views: 12203

Re: PicoScope3204 - multiple runBlock

Hi Martin,
can you suggest me something?
Thanks
by mosine
Wed Mar 22, 2017 5:24 pm
Forum: .Net Languages (C#, VB.Net, .)
Topic: PicoScope3204 - multiple runBlock
Replies: 15
Views: 12203

Re: PicoScope3204 - multiple runBlock

Hi Martin,
I post my code: part of code of Form and my picoscope dll.
My application works:
- an event call function to handle picoscope
- starts handle form -> dll

I followed your suggest (stop, close...), but I have the same problem.

Can you help me?

Thanks in advance.
by mosine
Wed Mar 22, 2017 4:35 pm
Forum: .Net Languages (C#, VB.Net, .)
Topic: PicoScope3204 - multiple runBlock
Replies: 15
Views: 12203

Re: PicoScope3204 - multiple runBlock

Hi Martin,
I used example SDK: PicoSDK\PS3000A\C# console
by mosine
Wed Mar 22, 2017 1:29 pm
Forum: .Net Languages (C#, VB.Net, .)
Topic: PicoScope3204 - multiple runBlock
Replies: 15
Views: 12203

Re: PicoScope3204 - multiple runBlock

Hi Martin,
thank you for reply.

I used as example: C:\PicoSDK\PS3000A\C# console.

If you see in previous posts, my code is similar (now I remove Imports.Stop(_handle)).