1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
|
"""
This module provides an oscilloscope class for PicoScope branded oscilloscopes using
the official `picosdk-python-wrappers <https://github.com/picotech/picosdk-python-wrappers>`_.
"""
import ctypes
from math import log2, floor
from time import time_ns, sleep
from typing import cast, Mapping, Optional, MutableMapping, Union, Tuple
import numpy as np
from picosdk.errors import CannotFindPicoSDKError
from picosdk.functions import assert_pico_ok
from picosdk.library import Library
try:
from picosdk.ps3000 import ps3000
except CannotFindPicoSDKError as exc:
ps3000 = exc
try:
from picosdk.ps4000 import ps4000
except CannotFindPicoSDKError as exc:
ps4000 = exc
try:
from picosdk.ps5000 import ps5000
except CannotFindPicoSDKError as exc:
ps5000 = exc
try:
from picosdk.ps6000 import ps6000
except CannotFindPicoSDKError as exc:
ps6000 = exc
from public import public
from .base import Scope, SampleType
from ..trace import Trace
def adc2volt(adc: Union[np.ndarray, ctypes.c_int16],
volt_range: float, adc_minmax: int, dtype=np.float32) -> Union[np.ndarray, float]: # pragma: no cover
"""
Convert raw adc values to volts.
:param adc: Either a single value (:py:class:`ctypes.c_int16`) or an array (:py:class:`np.ndarray`) of those to convert.
:param volt_range: The voltage range used for collecting the samples.
:param adc_minmax:
:param dtype: The numpy `dtype` of the output.
:return: The converted values.
"""
if isinstance(adc, ctypes.c_int16):
return (adc.value / adc_minmax) * volt_range
if isinstance(adc, np.ndarray):
return ((adc / adc_minmax) * volt_range).astype(dtype=dtype, copy=False)
raise ValueError
def volt2adc(volt: Union[np.ndarray, float],
volt_range: float, adc_minmax: int, dtype=np.float32) -> Union[np.ndarray, ctypes.c_int16]: # pragma: no cover
"""
Convert volt values to raw adc values.
:param volt: Either a single value (:py:class:`float`) or an array (:py:class:`np.ndarray`) of those to convert.
:param volt_range: The voltage range used for collecting the samples.
:param adc_minmax:
:param dtype: The numpy `dtype` of the output.
:return: The converted values.
"""
if isinstance(volt, float):
return ctypes.c_int16(int((volt / volt_range) * adc_minmax))
if isinstance(volt, np.ndarray):
return ((volt / volt_range) * adc_minmax).astype(dtype=dtype, copy=False)
raise ValueError
@public
class PicoScopeSdk(Scope): # pragma: no cover
"""A PicoScope based scope."""
MODULE: Library
PREFIX: str
CHANNELS: Mapping
RANGES: Mapping
MAX_ADC_VALUE: int
MIN_ADC_VALUE: int
COUPLING: Mapping
TIME_UNITS: Mapping
TRIGGERS: Mapping = {
"above": 0,
"below": 1,
"rising": 2,
"falling": 3
}
_variant: Optional[str]
def __init__(self, variant: Optional[str] = None):
super().__init__()
self.handle: ctypes.c_int16 = ctypes.c_int16()
self.frequency: Optional[int] = None
self.pretrig: Optional[int] = None
self.posttrig: Optional[int] = None
self.samples: Optional[int] = None
self.timebase: Optional[int] = None
self.buffers: MutableMapping = {}
self.ranges: MutableMapping = {}
self._variant = variant
def open(self) -> None:
assert_pico_ok(self.__dispatch_call("OpenUnit", ctypes.byref(self.handle)))
@property
def channels(self):
return list(self.CHANNELS.keys())
def get_variant(self):
if self._variant is not None:
return self._variant
info = (ctypes.c_int8 * 6)()
size = ctypes.c_int16()
assert_pico_ok(self.__dispatch_call("GetUnitInfo", self.handle, ctypes.byref(info), 6,
ctypes.byref(size), 3))
self._variant = "".join(chr(i) for i in info[:size.value])
return self._variant
def setup_frequency(self, frequency: int, pretrig: int, posttrig: int) -> Tuple[int, int]:
return self.set_frequency(frequency, pretrig, posttrig)
def set_channel(self, channel: str, enabled: bool, coupling: str, range: float, offset: float):
if offset != 0.0:
raise ValueError("Nonzero offset not supported.")
assert_pico_ok(
self.__dispatch_call("SetChannel", self.handle, self.CHANNELS[channel], enabled,
self.COUPLING[coupling], self.RANGES[range]))
self.ranges[channel] = range
def setup_channel(self, channel: str, coupling: str, range: float, offset: float, enable: bool):
self.set_channel(channel, enable, coupling, range, offset)
def _set_freq(self, frequency: int, pretrig: int, posttrig: int, period_bound: float,
timebase_bound: int,
low_freq: int, high_freq: int, high_subtract: int) -> Tuple[int, int]:
samples = pretrig + posttrig
period = 1 / frequency
if low_freq == 0 or period > period_bound:
tb = floor(high_freq / frequency + high_subtract)
actual_frequency = high_freq // (tb - high_subtract)
else:
tb = floor(log2(low_freq) - log2(frequency))
if tb > timebase_bound:
tb = timebase_bound
actual_frequency = low_freq // 2 ** tb
max_samples = ctypes.c_int32()
assert_pico_ok(self.__dispatch_call("GetTimebase", self.handle, tb, samples, None, 0,
ctypes.byref(max_samples), 0))
if max_samples.value < samples:
pretrig = max_samples.value * (pretrig // samples)
posttrig = max_samples.value - pretrig
samples = max_samples.value
self.frequency = actual_frequency
self.samples = samples
self.pretrig = pretrig
self.posttrig = posttrig
self.timebase = tb
return actual_frequency, samples
def set_frequency(self, frequency: int, pretrig: int, posttrig: int) -> Tuple[int, int]:
raise NotImplementedError
def setup_trigger(self, channel: str, threshold: float, direction: str, delay: int,
timeout: int, enable: bool):
self.set_trigger(direction, enable, threshold, channel, delay, timeout)
def set_trigger(self, type: str, enabled: bool, value: float, channel: str,
delay: int, timeout: int):
assert_pico_ok(
self.__dispatch_call("SetSimpleTrigger", self.handle, enabled,
self.CHANNELS[channel],
volt2adc(value, self.ranges[channel], self.MAX_ADC_VALUE),
self.TRIGGERS[type], delay, timeout))
def setup_capture(self, channel: str, enable: bool):
self.set_buffer(channel, enable)
def set_buffer(self, channel: str, enable: bool):
if self.samples is None:
raise ValueError
if enable:
if channel in self.buffers:
del self.buffers[channel]
buffer = (ctypes.c_int16 * self.samples)()
assert_pico_ok(
self.__dispatch_call("SetDataBuffer", self.handle, self.CHANNELS[channel],
ctypes.byref(buffer), self.samples))
self.buffers[channel] = buffer
else:
assert_pico_ok(
self.__dispatch_call("SetDataBuffer", self.handle, self.CHANNELS[channel],
None, self.samples))
del self.buffers[channel]
def arm(self):
if self.samples is None or self.timebase is None:
raise ValueError
assert_pico_ok(
self.__dispatch_call("RunBlock", self.handle, self.pretrig, self.posttrig,
self.timebase, 0,
None, 0, None, None))
def capture(self, timeout: Optional[int] = None) -> bool:
start = time_ns()
if self.samples is None:
raise ValueError
ready = ctypes.c_int16(0)
check = ctypes.c_int16(0)
while ready.value == check.value:
sleep(0.001)
assert_pico_ok(self.__dispatch_call("IsReady", self.handle, ctypes.byref(ready)))
if timeout is not None and (time_ns() - start) / 1e6 >= timeout:
return False
return True
def retrieve(self, channel: str, type: SampleType, dtype=np.float32) -> Optional[Trace]:
if self.samples is None:
raise ValueError
actual_samples = ctypes.c_int32(self.samples)
overflow = ctypes.c_int16()
assert_pico_ok(
self.__dispatch_call("GetValues", self.handle, 0, ctypes.byref(actual_samples), 1,
0, 0, ctypes.byref(overflow)))
arr = np.array(self.buffers[channel], dtype=dtype)
if type == SampleType.Raw:
data = arr
else:
data = cast(np.ndarray, adc2volt(arr, self.ranges[channel], self.MAX_ADC_VALUE, dtype=dtype))
return Trace(data, {"sampling_frequency": self.frequency, "channel": channel, "sample_type": type})
def stop(self):
assert_pico_ok(self.__dispatch_call("Stop"))
def close(self):
assert_pico_ok(self.__dispatch_call("CloseUnit", self.handle))
def __dispatch_call(self, name, *args, **kwargs):
method = getattr(self.MODULE, self.PREFIX + name)
if method is None:
raise ValueError
return method(*args, **kwargs)
if isinstance(ps3000, CannotFindPicoSDKError):
@public
class PS3000Scope(PicoScopeSdk): # pragma: no cover
"""A PicoScope 3000 series oscilloscope is not available. (Install `libps3000`)."""
def __init__(self, variant: Optional[str] = None):
super().__init__(variant)
raise ps3000
else: # pragma: no cover
@public
class PS3000Scope(PicoScopeSdk): # type: ignore
"""A PicoScope 3000 series oscilloscope."""
MODULE = ps3000
PREFIX = "ps3000"
CHANNELS = {
"A": ps3000.PS3000_CHANNEL["PS3000_CHANNEL_A"],
"B": ps3000.PS3000_CHANNEL["PS3000_CHANNEL_B"],
"C": ps3000.PS3000_CHANNEL["PS3000_CHANNEL_C"],
"D": ps3000.PS3000_CHANNEL["PS3000_CHANNEL_D"]
}
RANGES = {
0.02: ps3000.PS3000_VOLTAGE_RANGE["PS3000_20MV"],
0.05: ps3000.PS3000_VOLTAGE_RANGE["PS3000_50MV"],
0.10: ps3000.PS3000_VOLTAGE_RANGE["PS3000_100MV"],
0.20: ps3000.PS3000_VOLTAGE_RANGE["PS3000_200MV"],
0.50: ps3000.PS3000_VOLTAGE_RANGE["PS3000_500MV"],
1.00: ps3000.PS3000_VOLTAGE_RANGE["PS3000_1V"],
2.00: ps3000.PS3000_VOLTAGE_RANGE["PS3000_2V"],
5.00: ps3000.PS3000_VOLTAGE_RANGE["PS3000_5V"],
10.0: ps3000.PS3000_VOLTAGE_RANGE["PS3000_10V"],
20.0: ps3000.PS3000_VOLTAGE_RANGE["PS3000_20V"],
50.0: ps3000.PS3000_VOLTAGE_RANGE["PS3000_50V"],
100.0: ps3000.PS3000_VOLTAGE_RANGE["PS3000_100V"],
200.0: ps3000.PS3000_VOLTAGE_RANGE["PS3000_200V"],
400.0: ps3000.PS3000_VOLTAGE_RANGE["PS3000_400V"]
}
MAX_ADC_VALUE = 32767
MIN_ADC_VALUE = -32767
COUPLING = {
"AC": ps3000.PICO_COUPLING["AC"],
"DC": ps3000.PICO_COUPLING["DC"]
}
def get_variant(self):
if self._variant is not None:
return self._variant
info = (ctypes.c_int8 * 6)()
size = ctypes.c_int16(6)
assert_pico_ok(self.__dispatch_call("GetUnitInfo", self.handle, ctypes.byref(info), size, 3))
self._variant = "".join(chr(i) for i in info[:size.value])
return self._variant
def set_frequency(self, frequency: int, pretrig: int, posttrig: int): # TODO: fix
raise NotImplementedError
if isinstance(ps4000, CannotFindPicoSDKError):
@public
class PS4000Scope(PicoScopeSdk): # pragma: no cover
"""A PicoScope 4000 series oscilloscope is not available. (Install `libps4000`)."""
def __init__(self, variant: Optional[str] = None):
super().__init__(variant)
raise ps4000
else: # pragma: no cover
@public
class PS4000Scope(PicoScopeSdk): # type: ignore
"""A PicoScope 4000 series oscilloscope."""
MODULE = ps4000
PREFIX = "ps4000"
CHANNELS = {
"A": ps4000.PS4000_CHANNEL["PS4000_CHANNEL_A"],
"B": ps4000.PS4000_CHANNEL["PS4000_CHANNEL_B"],
"C": ps4000.PS4000_CHANNEL["PS4000_CHANNEL_C"],
"D": ps4000.PS4000_CHANNEL["PS4000_CHANNEL_D"]
}
RANGES = {
0.01: ps4000.PS4000_RANGE["PS4000_10MV"],
0.02: ps4000.PS4000_RANGE["PS4000_20MV"],
0.05: ps4000.PS4000_RANGE["PS4000_50MV"],
0.10: ps4000.PS4000_RANGE["PS4000_100MV"],
0.20: ps4000.PS4000_RANGE["PS4000_200MV"],
0.50: ps4000.PS4000_RANGE["PS4000_500MV"],
1.00: ps4000.PS4000_RANGE["PS4000_1V"],
2.00: ps4000.PS4000_RANGE["PS4000_2V"],
5.00: ps4000.PS4000_RANGE["PS4000_5V"],
10.0: ps4000.PS4000_RANGE["PS4000_10V"],
20.0: ps4000.PS4000_RANGE["PS4000_20V"],
50.0: ps4000.PS4000_RANGE["PS4000_50V"],
100.0: ps4000.PS4000_RANGE["PS4000_100V"]
}
MAX_ADC_VALUE = 32764
MIN_ADC_VALUE = -32764
COUPLING = {
"AC": ps4000.PICO_COUPLING["AC"],
"DC": ps4000.PICO_COUPLING["DC"]
}
def set_frequency(self, frequency: int, pretrig: int, posttrig: int):
variant = self.get_variant()
if variant in ("4223", "4224", "4423", "4424"):
return self._set_freq(frequency, pretrig, posttrig, 50e-9, 2, 80_000_000, 20_000_000, 1)
elif variant in ("4226", "4227"):
return self._set_freq(frequency, pretrig, posttrig, 32e-9, 3, 250_000_000, 31_250_000,
2)
elif variant == "4262":
return self._set_freq(frequency, pretrig, posttrig, 0, 0, 0, 10_000_000, -1)
if isinstance(ps5000, CannotFindPicoSDKError):
@public
class PS5000Scope(PicoScopeSdk): # pragma: no cover
"""A PicoScope 5000 series oscilloscope is not available. (Install `libps5000`)."""
def __init__(self, variant: Optional[str] = None):
super().__init__(variant)
raise ps5000
else: # pragma: no cover
@public
class PS5000Scope(PicoScopeSdk): # type: ignore
"""A PicoScope 5000 series oscilloscope."""
MODULE = ps5000
PREFIX = "ps5000"
CHANNELS = {
"A": ps5000.PS5000_CHANNEL["PS5000_CHANNEL_A"],
"B": ps5000.PS5000_CHANNEL["PS5000_CHANNEL_B"],
"C": ps5000.PS5000_CHANNEL["PS5000_CHANNEL_C"],
"D": ps5000.PS5000_CHANNEL["PS5000_CHANNEL_D"]
}
RANGES = {
0.01: 0,
0.02: 1,
0.05: 2,
0.10: 3,
0.20: 4,
0.50: 5,
1.00: 6,
2.00: 7,
5.00: 8,
10.0: 9,
20.0: 10,
50.0: 11
}
MAX_ADC_VALUE = 32512
MIN_ADC_VALUE = -32512
COUPLING = {
"AC": 0,
"DC": 1
}
def set_frequency(self, frequency: int, pretrig: int, posttrig: int):
return self._set_freq(frequency, pretrig, posttrig, 4e-9, 2, 1_000_000_000, 125_000_000, 2)
if isinstance(ps6000, CannotFindPicoSDKError):
@public
class PS6000Scope(PicoScopeSdk): # pragma: no cover
"""A PicoScope 6000 series oscilloscope is not available. (Install `libps6000`)."""
def __init__(self, variant: Optional[str] = None):
super().__init__(variant)
raise ps6000
else: # pragma: no cover
@public
class PS6000Scope(PicoScopeSdk): # type: ignore
"""A PicoScope 6000 series oscilloscope."""
MODULE = ps6000
PREFIX = "ps6000"
CHANNELS = {
"A": ps6000.PS6000_CHANNEL["PS6000_CHANNEL_A"],
"B": ps6000.PS6000_CHANNEL["PS6000_CHANNEL_B"],
"C": ps6000.PS6000_CHANNEL["PS6000_CHANNEL_C"],
"D": ps6000.PS6000_CHANNEL["PS6000_CHANNEL_D"]
}
RANGES = {
0.01: ps6000.PS6000_RANGE["PS6000A_10MV"],
0.02: ps6000.PS6000_RANGE["PS6000_20MV"],
0.05: ps6000.PS6000_RANGE["PS6000_50MV"],
0.10: ps6000.PS6000_RANGE["PS6000_100MV"],
0.20: ps6000.PS6000_RANGE["PS6000_200MV"],
0.50: ps6000.PS6000_RANGE["PS6000_500MV"],
1.00: ps6000.PS6000_RANGE["PS6000_1V"],
2.00: ps6000.PS6000_RANGE["PS6000_2V"],
5.00: ps6000.PS6000_RANGE["PS6000_5V"],
10.0: ps6000.PS6000_RANGE["PS6000_10V"],
20.0: ps6000.PS6000_RANGE["PS6000_20V"],
50.0: ps6000.PS6000_RANGE["PS6000_50V"]
}
MAX_ADC_VALUE = 32512
MIN_ADC_VALUE = -32512
COUPLING = {
"AC": ps6000.PS6000_COUPLING["PS6000_AC"],
"DC": ps6000.PS6000_COUPLING["PS6000_DC_1M"],
"DC_50": ps6000.PS6000_COUPLING["PS6000_DC_50R"]
}
def open(self):
assert_pico_ok(ps6000.ps6000OpenUnit(ctypes.byref(self.handle), None))
def set_channel(self, channel: str, enabled: bool, coupling: str, range: float, offset: float):
assert_pico_ok(ps6000.ps6000SetChannel(self.handle, self.CHANNELS[channel], enabled,
self.COUPLING[coupling], self.RANGES[range], offset,
ps6000.PS6000_BANDWIDTH_LIMITER["PS6000_BW_FULL"]))
def set_buffer(self, channel: str, enable: bool):
if self.samples is None:
raise ValueError
if enable:
if channel in self.buffers:
del self.buffers[channel]
buffer = (ctypes.c_int16 * self.samples)()
assert_pico_ok(
ps6000.ps6000SetDataBuffer(self.handle, self.CHANNELS[channel],
ctypes.byref(buffer), self.samples, 0))
self.buffers[channel] = buffer
else:
assert_pico_ok(
ps6000.ps6000SetDataBuffer(self.handle, self.CHANNELS[channel],
None, self.samples, 0))
del self.buffers[channel]
def set_frequency(self, frequency: int, pretrig: int, posttrig: int):
return self._set_freq(frequency, pretrig, posttrig, 3.2e-9, 4, 5_000_000_000, 156_250_000,
4)
|