Search found 59 matches

by lab!fyi
Tue Nov 07, 2017 1:09 pm
Forum: PicoScope 6 for Windows
Topic: Collecting traces while using PicoScope software
Replies: 4
Views: 5638

Re: Collecting traces automatically while

I have run into exactly same problem. This is common to all RTS PicoScopes because software is common. Currently only fast way to do it is via SDK (look up USB transfer speed PS6 vs SDK). However I also do not wish do deal with setting up working environment with SDK, only to access wfm and do my bu...
by lab!fyi
Mon Nov 06, 2017 10:28 am
Forum: USB PC Oscilloscopes
Topic: Suggestion: auto-enable channels with connected probes
Replies: 2
Views: 4136

Re: Suggestion: auto-enable channels with connected probes

Option, possibly per channel incorporated into Auto setting, because enabling/disabling channels will affect max sampling rate.
by lab!fyi
Wed Nov 01, 2017 1:42 pm
Forum: PicoScope 6 for Windows
Topic: Splitting or truncating-Converting big psdata file to mat
Replies: 5
Views: 5768

Re: Splitting or truncating-Converting big psdata file to ma

I had similar issues. Just as proof of concept did download GNU Octave and it can open Matlab v4 files and save as v7 for example:
>> load -v4 "somefile.mat"
>> save -v7 "somefile_v7.mat"
Think this could be done from command line also by executing script. Currently no time to investigate further.
by lab!fyi
Wed Sep 27, 2017 1:42 pm
Forum: USB PC Oscilloscopes
Topic: Custom protocol decoders ?
Replies: 8
Views: 9950

Re: Custom protocol decoders ?

Hi, actually I almost* achieved what I wanted directly with math channels: http://www.eevblog.com/forum/testgear/picoscope-2000/msg1298871/#msg1298871 Would have been a breeze with MatLab but had concept that this should be possible in end user GUI. Currently exploring CLI apporach picoscope /a ? In...
by lab!fyi
Wed Sep 27, 2017 12:01 pm
Forum: USB PC Oscilloscopes
Topic: Custom protocol decoders ?
Replies: 8
Views: 9950

Re: Custom protocol decoders ?

I also think that SDK based approach will not reach wide audience. Most often one wants to accomplish specific isolated task on top of features already present in original GUI. Problem is not limited only to decoding. I had real good fight with math channels only to reach conclusion that would be mu...
by lab!fyi
Wed Sep 13, 2017 4:55 pm
Forum: PicoScope 6 for Windows
Topic: Zooming can truncate waveform
Replies: 5
Views: 6301

Re: Zooming can truncate waveform

BTW side effect of this expected behaviour is either completely or partially breaking math traces that have to do with time (filters, integrals etc), especially ones rendered over multiple previous buffers (average etc). Do not think that this kind of optimization is compatible with time-related mat...
by lab!fyi
Tue Sep 12, 2017 11:13 am
Forum: PicoScope 6 for Windows
Topic: Capturing while zoomed drops the data
Replies: 6
Views: 6299

Re: Capturing while zoomed drops the data

But it is still capturing non-detailed data then. Why not draw it instead of blank? You already have some sort of min/max style "uncertain" trace sometimes used in ETS, waiting for detailed data etc. Would prefer dashed line(s) however (bordering "uncertain" region).
by lab!fyi
Mon Sep 11, 2017 9:17 am
Forum: PicoScope 6 for Windows
Topic: trace.xml clobbering - 6.4.28 WinXP SP3
Replies: 5
Views: 8165

Re: trace.xml clobbering - 6.4.28 WinXP SP3

Windows built-in folder compression is helpful when storing large amount of textual data.
by lab!fyi
Thu Sep 07, 2017 1:39 pm
Forum: PicoScope 6 for Windows
Topic: Change of the trigger time of saved waveforms (.psdata)
Replies: 7
Views: 7332

Re: Change of the trigger time of saved waveforms (.psdata)

Create reference wfm from saved trace. Create math channel with time offset from it. Example:
{A (2)}[0.00001]
10us time advance on auto-named ref created from saved Ch A.
by lab!fyi
Wed Sep 06, 2017 7:06 am
Forum: PicoScope 6 for Windows
Topic: New accurate and fast phase shift calculation formula
Replies: 8
Views: 18320

Re: New accurate and fast phase shift calculation formula

Thanks, heres condition of severe undersmapling... PicoScope_bode_plot.jpg 0-100MHz bode plot with external gen on coax stub filter. 100ms sweep time. Phase data unsigned. Level normalized to 0dBm full bw. Theres some underlying stuff that needs to be explained and developed further, maybe move this...
by lab!fyi
Wed Aug 30, 2017 5:35 pm
Forum: PicoScope 6 for Windows
Topic: Picoscope 6 - Serial Decoding
Replies: 6
Views: 7751

Re: Picoscope 6 - Serial Decoding

Maybe one could automate via running executable from Alerts on Capture or Buffers full? Executable would be some sort of macro software with all needed clicks and keys recorded. If have not tried this but conceptually should work if find good macro software - quick search shows some promise.
by lab!fyi
Wed Aug 30, 2017 5:25 pm
Forum: Projects
Topic: Amplify AWG signal
Replies: 11
Views: 17460

Re: Amplify AWG signal

packo wrote:You could perhaps try with the Aim-TTI WA301 (DC to 1MHz bandwidth, up to 30Vpp)
+1 I have one, excellent companion to Pico up to 1MHz AWGs.
by lab!fyi
Thu Aug 24, 2017 11:41 am
Forum: PicoScope 6 for Windows
Topic: New accurate and fast phase shift calculation formula
Replies: 8
Views: 18320

Re: New accurate and fast phase shift calculation formula

Since phase shift is essentially converted to PWM value it can be graphed using following formula, making use of built-in duty() function: duty(((((atan(1/tan(pi*(A/10000)))/pi)+(A/10000))*-((atan(1/tan(pi*(B/10000)))/pi)+(B/10000))) + 0.25))/0.555555555 Example: PS6__phase_shift_graph.jpg What can ...
by lab!fyi
Thu Aug 17, 2017 8:27 pm
Forum: PicoScope 6 for Windows
Topic: New accurate and fast phase shift calculation formula
Replies: 8
Views: 18320

Re: New accurate and fast phase shift calculation formula

Further investigation has shown that function works on (equal duty) pulses until they overlap . When pulses do not overlap value gets stuck on maximum value just at the moment of "departure". Input: 100kHz square, duty 1.63%. Case 1, 5.32° degree phase shift set, pulses overlap: accurate_phase_shift...
by lab!fyi
Wed Aug 16, 2017 7:05 pm
Forum: PicoScope 6 for Windows
Topic: New accurate and fast phase shift calculation formula
Replies: 8
Views: 18320

Re: New accurate and fast phase shift calculation formula

Made test with ETS on 25MHz symmetrical squares. New formula 100% matches cursors carefully placed under substantial zoom: accurate_phase_shift_formula__ETS.jpg In general for formula to work wfms must have equal duty cycles at zero crossing, duty itself may differ from 50%. Consequently works with ...