-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy patherror_codes.py
387 lines (386 loc) · 19.6 KB
/
error_codes.py
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
"""Error codes - copied from the PS6000 programmer's manual."""
# To get formatting correct do following copy-replace in
# Programmers Notepad
# 1. Copy/replace ' - ' with '", "'
# 2. Copy/replace '\r' with '"],\r' (enable slash expressions when doing)
# 3. Copy/replace '^([0-9A-F]{2} ){1}' with '0x\1, "' (w/ regex)
# 4. Copy/replace '^([0-9A-F]{3} ){1}' with '0x\1, "' (w/ regex)
# 5. Copy/repplace '0x' with '[0x'
ERROR_CODES = [
[0x00, "PICO_OK", "The PicoScope XXXX is functioning correctly."],
[0x01, "PICO_MAX_UNITS_OPENED",
"An attempt has been made to open more than PSXXXX_MAX_UNITS."],
[0x02, "PICO_MEMORY_FAIL",
"Not enough memory could be allocated on the host machine."],
[0x03, "PICO_NOT_FOUND", "No PicoScope XXXX could be found."],
[0x04, "PICO_FW_FAIL", "Unable to download firmware."],
[0x05, "PICO_OPEN_OPERATION_IN_PROGRESS"],
[0x06, "PICO_OPERATION_FAILED"],
[0x07, "PICO_NOT_RESPONDING",
"The PicoScope XXXX is not responding to commands from the PC."],
[0x08, "PICO_CONFIG_FAIL",
"The configuration information in the PicoScope XXXX has become " +
"corrupt or is missing."],
[0x09, "PICO_KERNEL_DRIVER_TOO_OLD",
"The picopp.sys file is too old to be used with the device driver."],
[0x0A, "PICO_EEPROM_CORRUPT",
"The EEPROM has become corrupt, so the device will use a default " +
"setting."],
[0x0B, "PICO_OS_NOT_SUPPORTED",
"The operating system on the PC is not supported by this driver."],
[0x0C, "PICO_INVALID_HANDLE",
"There is no device with the handle value passed."],
[0x0D, "PICO_INVALID_PARAMETER", "A parameter value is not valid."],
[0x0E, "PICO_INVALID_TIMEBASE",
"The timebase is not supported or is invalid."],
[0x0F, "PICO_INVALID_VOLTAGE_RANGE",
"The voltage range is not supported or is invalid."],
[0x10, "PICO_INVALID_CHANNEL",
"The channel number is not valid on this device or no channels have " +
"been set."],
[0x11, "PICO_INVALID_TRIGGER_CHANNEL",
"The channel set for a trigger is not available on this device."],
[0x12, "PICO_INVALID_CONDITION_CHANNEL",
"The channel set for a condition is not available on this device."],
[0x13, "PICO_NO_SIGNAL_GENERATOR",
"The device does not have a signal generator."],
[0x14, "PICO_STREAMING_FAILED",
"Streaming has failed to start or has stopped without user request."],
[0x15, "PICO_BLOCK_MODE_FAILED",
"Block failed to start", "a parameter may have been set wrongly."],
[0x16, "PICO_NULL_PARAMETER", "A parameter that was required is NULL."],
[0x18, "PICO_DATA_NOT_AVAILABLE",
"No data is available from a run block call."],
[0x19, "PICO_STRING_BUFFER_TOO_SMALL",
"The buffer passed for the information was too small."],
[0x1A, "PICO_ETS_NOT_SUPPORTED", "ETS is not supported on this device."],
[0x1B, "PICO_AUTO_TRIGGER_TIME_TOO_SHORT",
"The auto trigger time is less than the time it will take to collect " +
"the pre-trigger data."],
[0x1C, "PICO_BUFFER_STALL",
"The collection of data has stalled as unread data would be " +
"overwritten."],
[0x1D, "PICO_TOO_MANY_SAMPLES",
"Number of samples requested is more than available in the current " +
"memory segment."],
[0x1E, "PICO_TOO_MANY_SEGMENTS",
"Not possible to create number of segments requested."],
[0x1F, "PICO_PULSE_WIDTH_QUALIFIER",
"A null pointer has been passed in the trigger function or one of the " +
"parameters is out of range."],
[0x20, "PICO_DELAY",
"One or more of the hold-off parameters are out of range."],
[0x21, "PICO_SOURCE_DETAILS",
"One or more of the source details are incorrect."],
[0x22, "PICO_CONDITIONS", "One or more of the conditions are incorrect."],
[0x23, "PICO_USER_CALLBACK",
"The driver's thread is currently in the psXXXXBlockReady callback " +
"function and therefore the action cannot be carried out."],
[0x24, "PICO_DEVICE_SAMPLING",
"An attempt is being made to get stored data while streaming. " +
"Either stop streaming by calling psXXXXStop, or use " +
"psXXXXGetStreamingLatestValues."],
[0x25, "PICO_NO_SAMPLES_AVAILABLE",
"because a run has not been completed."],
[0x26, "PICO_SEGMENT_OUT_OF_RANGE",
"The memory index is out of range."],
[0x27, "PICO_BUSY", "Data cannot be returned yet."],
[0x28, "PICO_STARTINDEX_INVALID",
"The start time to get stored data is out of range."],
[0x29, "PICO_INVALID_INFO",
"The information number requested is not a valid number."],
[0x2A, "PICO_INFO_UNAVAILABLE",
"The handle is invalid so no information is available about the device." +
" Only PICO_DRIVER_VERSION is available."],
[0x2B, "PICO_INVALID_SAMPLE_INTERVAL",
"The sample interval selected for streaming is out of range."],
[0x2D, "PICO_MEMORY", "Driver cannot allocate memory."],
[0x2E, "PICO_SIG_GEN_PARAM",
"Incorrect parameter passed to signal generator."],
[0x34, "PICO_WARNING_AUX_OUTPUT_CONFLICT",
"AUX cannot be used as input and output at the same time."],
[0x35, "PICO_SIGGEN_OUTPUT_OVER_VOLTAGE",
"The combined peak to peak voltage and the analog offset voltage " +
"exceed the allowable voltage the signal generator can produce."],
[0x36, "PICO_DELAY_NULL", "NULL pointer passed as delay parameter."],
[0x37, "PICO_INVALID_BUFFER",
"The buffers for overview data have not been set while streaming."],
[0x38, "PICO_SIGGEN_OFFSET_VOLTAGE",
"The analog offset voltage is out of range."],
[0x39, "PICO_SIGGEN_PK_TO_PK",
"The analog peak to peak voltage is out of range."],
[0x3A, "PICO_CANCELLED", "A block collection has been cancelled."],
[0x3B, "PICO_SEGMENT_NOT_USED",
"The segment index is not currently being used."],
[0x3C, "PICO_INVALID_CALL",
"The wrong GetValues function has been called for the collection mode " +
"in use."],
[0x3F, "PICO_NOT_USED", "The function is not available."],
[0x40, "PICO_INVALID_SAMPLERATIO",
"The aggregation ratio requested is out of range."],
[0x41, "PICO_INVALID_STATE",
"Device is in an invalid state."],
[0x42, "PICO_NOT_ENOUGH_SEGMENTS",
"The number of segments allocated is fewer than the number of captures " +
"requested."],
[0x43, "PICO_DRIVER_FUNCTION",
"You called a driver function while another driver function was still " +
"being processed."],
[0x45, "PICO_INVALID_COUPLING",
"An invalid coupling type was specified in psXXXXSetChannel."],
[0x46, "PICO_BUFFERS_NOT_SET",
"An attempt was made to get data before a data buffer was defined."],
[0x47, "PICO_RATIO_MODE_NOT_SUPPORTED",
"The selected downsampling mode (used for data reduction) is not " +
"allowed."],
[0x49, "PICO_INVALID_TRIGGER_PROPERTY",
"An invalid parameter was passed to psXXXXSetTriggerChannelProperties."],
[0x4A, "PICO_INTERFACE_NOT_CONNECTED",
"The driver was unable to contact the oscilloscope."],
[0x4D, "PICO_SIGGEN_WAVEFORM_SETUP_FAILED",
"A problem occurred in psXXXXSetSigGenBuiltIn or " +
"psXXXXSetSigGenArbitrary."],
[0x4E, "PICO_FPGA_FAIL"],
[0x4F, "PICO_POWER_MANAGER"],
[0x50, "PICO_INVALID_ANALOGUE_OFFSET",
"An impossible analogue offset value was specified in psXXXXSetChannel."],
[0x51, "PICO_PLL_LOCK_FAILED",
"Unable to configure the PicoScope XXXX."],
[0x52, "PICO_ANALOG_BOARD",
"The oscilloscope's analog board is not detected, or is not connected " +
"to the digital board."],
[0x53, "PICO_CONFIG_FAIL_AWG",
"Unable to configure the signal generator."],
[0x54, "PICO_INITIALISE_FPGA",
"The FPGA cannot be initialized, so unit cannot be opened."],
[0x56, "PICO_EXTERNAL_FREQUENCY_INVALID",
"The frequency for the external clock is not within ±5% of the " +
"stated value."],
[0x57, "PICO_CLOCK_CHANGE_ERROR",
"The FPGA could not lock the clock signal."],
[0x58, "PICO_TRIGGER_AND_EXTERNAL_CLOCK_CLASH",
"You are trying to configure the AUX input as both a trigger and a " +
"reference clock."],
[0x59, "PICO_PWQ_AND_EXTERNAL_CLOCK_CLASH",
"You are trying to configure the AUX input as both a pulse width " +
"qualifier and a reference clock."],
[0x5A, "PICO_UNABLE_TO_OPEN_SCALING_FILE",
"The scaling file set can not be opened."],
[0x5B, "PICO_MEMORY_CLOCK_FREQUENCY",
"The frequency of the memory is reporting incorrectly."],
[0x5C, "PICO_I2C_NOT_RESPONDING",
"The I2C that is being actioned is not responding to requests."],
[0x5D, "PICO_NO_CAPTURES_AVAILABLE",
"There are no captures available and therefore no data can be returned."],
[0x5E, "PICO_NOT_USED_IN_THIS_CAPTURE_MODE",
"The capture mode the device is currently running in does not support " +
"the current request."],
[0x103, "PICO_GET_DATA_ACTIVE", "Reserved"],
[0x104, "PICO_IP_NETWORKED", "The device is currently connected via " +
"the IP Network socket and thus the call made is not supported."],
[0x105, "PICO_INVALID_IP_ADDRESS", "An IP address that is not correct " +
"has been passed to the driver."],
[0x106, "PICO_IPSOCKET_FAILED", "The IP socket has failed."],
[0x107, "PICO_IPSOCKET_TIMEDOUT", "The IP socket has timed out."],
[0x108, "PICO_SETTINGS_FAILED", "The settings requested have failed to " +
"be set."],
[0x109, "PICO_NETWORK_FAILED", "The network connection has failed."],
[0x10A, "PICO_WS2_32_DLL_NOT_LOADED", "Unable to load the WS2 dll."],
[0x10B, "PICO_INVALID_IP_PORT", "The IP port is invalid."],
[0x10C, "PICO_COUPLING_NOT_SUPPORTED",
"The type of coupling requested is not supported on the opened device."],
[0x10D, "PICO_BANDWIDTH_NOT_SUPPORTED",
"Bandwidth limit is not supported on the opened device."],
[0x10E, "PICO_INVALID_BANDWIDTH",
"The value requested for the bandwidth limit is out of range."],
[0x10F, "PICO_AWG_NOT_SUPPORTED",
"The device does not have an arbitrary waveform generator."],
[0x110, "PICO_ETS_NOT_RUNNING",
"Data has been requested with ETS mode set but run block has not been " +
"called, or stop has been called."],
[0x111, "PICO_SIG_GEN_WHITENOISE_NOT_SUPPORTED",
"White noise is not supported on the opened device."],
[0x112, "PICO_SIG_GEN_WAVETYPE_NOT_SUPPORTED",
"The wave type requested is not supported by the opened device."],
[0x116, "PICO_SIG_GEN_PRBS_NOT_SUPPORTED",
"Siggen does not generate pseudorandom bit stream."],
[0x117, "PICO_ETS_NOT_AVAILABLE_WITH_LOGIC_CHANNELS",
"When a digital port is enabled, ETS sample mode is not available for " +
"use."],
[0x118, "PICO_WARNING_REPEAT_VALUE", "Not applicable to this device."],
[0x119, "PICO_POWER_SUPPLY_CONNECTED",
"The DC power supply is connected."],
[0x11A, "PICO_POWER_SUPPLY_NOT_CONNECTED",
"The DC power supply isn’t connected."],
[0x11B, "PICO_POWER_SUPPLY_REQUEST_INVALID",
"Incorrect power mode passed for current power source."],
[0x11C, "PICO_POWER_SUPPLY_UNDERVOLTAGE",
"The supply voltage from the USB source is too low."],
[0x11D, "PICO_CAPTURING_DATA",
"The device is currently busy capturing data."],
[0x11E, "PICO_USB3_0_DEVICE_NON_USB3_0_PORT",
"You must connect the device to a USB 3.0 port, or call " +
"ps4000aChangePowerSource to switch the device into " +
"non-USB 3.0-power mode"],
[0x11F, "PICO_NOT_SUPPORTED_BY_THIS_DEVICE",
"A function has been called that is not supported by the current " +
"device variant."],
[0x120, "PICO_INVALID_DEVICE_RESOLUTION",
"The device resolution is invalid (out of range)."],
[0x121, "PICO_INVALID_NUMBER_CHANNELS_FOR_RESOLUTION",
"The number of channels which can be enabled is limited in " +
"15 and 16-bit modes"],
[0x122, "PICO_CHANNEL_DISABLED_DUE_TO_USB_POWERED",
"USB Power not sufficient to power all channels."],
[0x123, "PICO_SIGGEN_DC_VOLTAGE_NOT_CONFIGURABLE", ""],
[0x124, "PICO_NO_TRIGGER_ENABLED_FOR_TRIGGER_IN_PRE_TRIG", ""],
[0x125, "PICO_TRIGGER_WITHIN_PRE_TRIG_NOT_ARMED", ""],
[0x126, "PICO_TRIGGER_WITHIN_PRE_NOT_ALLOWED_WITH_DELAY", ""],
[0x127, "PICO_TRIGGER_INDEX_UNAVAILABLE", ""],
[0x128, "PICO_AWG_CLOCK_FREQUENCY", ""],
[0x129, "PICO_TOO_MANY_CHANNELS_IN_USE", ""],
[0x12A, "PICO_NULL_CONDITIONS", ""],
[0x12B, "PICO_DUPLICATE_CONDITION_SOURCE", ""],
[0x12C, "PICO_INVALID_CONDITION_INFO", ""],
[0x12D, "PICO_SETTINGS_READ_FAILED", ""],
[0x12E, "PICO_SETTINGS_WRITE_FAILED", ""],
[0x12F, "PICO_ARGUMENT_OUT_OF_RANGE", ""],
[0x130, "PICO_HARDWARE_VERSION_NOT_SUPPORTED", ""],
[0x131, "PICO_DIGITAL_HARDWARE_VERSION_NOT_SUPPORTED", ""],
[0x132, "PICO_ANALOGUE_HARDWARE_VERSION_NOT_SUPPORTED", ""],
[0x133, "PICO_UNABLE_TO_CONVERT_TO_RESISTANCE", ""],
[0x134, "PICO_DUPLICATED_CHANNEL", ""],
[0x135, "PICO_INVALID_RESISTANCE_CONVERSION", ""],
[0x136, "PICO_INVALID_VALUE_IN_MAX_BUFFER", ""],
[0x137, "PICO_INVALID_VALUE_IN_MIN_BUFFER", ""],
[0x138, "PICO_SIGGEN_FREQUENCY_OUT_OF_RANGE", ""],
[0x139, "PICO_EEPROM2_CORRUPT", ""],
[0x13A, "PICO_EEPROM2_FAIL", ""],
[0x13B, "PICO_SERIAL_BUFFER_TOO_SMALL", ""],
[0x13C, "PICO_SIGGEN_TRIGGER_AND_EXTERNAL_CLOCK_CLASH", ""],
[0x13D, "PICO_WARNING_SIGGEN_AUXIO_TRIGGER_DISABLED", ""],
[0x13E, "PICO_SIGGEN_GATING_AUXIO_NOT_AVAILABLE", ""],
[0x13F, "PICO_SIGGEN_GATING_AUXIO_ENABLED", ""],
[0x140, "PICO_RESOURCE_ERROR", ""],
[0x141, "PICO_TEMPERATURE_TYPE_INVALID", ""],
[0x142, "PICO_TEMPERATURE_TYPE_NOT_SUPPORTED", ""],
[0x143, "PICO_TIMEOUT", ""],
[0x144, "PICO_DEVICE_NOT_FUNCTIONING", ""],
[0x145, "PICO_INTERNAL_ERROR", ""],
[0x146, "PICO_MULTIPLE_DEVICES_FOUND", ""],
[0x147, "PICO_WARNING_NUMBER_OF_SEGMENTS_REDUCED", ""],
[0x148, "PICO_CAL_PINS_STATES", ""],
[0x149, "PICO_CAL_PINS_FREQUENCY", ""],
[0x14A, "PICO_CAL_PINS_AMPLITUDE", ""],
[0x14B, "PICO_CAL_PINS_WAVETYPE", ""],
[0x14C, "PICO_CAL_PINS_OFFSET", ""],
[0x14D, "PICO_PROBE_FAULT", ""],
[0x14E, "PICO_PROBE_IDENTITY_UNKNOWN", ""],
[0x14F, "PICO_PROBE_POWER_DC_POWER_SUPPLE_REQUIRED", ""],
[0x150, "PICO_PROBE_NOT_POWERED_THROUGH_DC_POWER_SUPPLY", ""],
[0x151, "PICO_PROBE_CONFIG_FAILURE", ""],
[0x152, "PICO_PROBE_INTERACTION_CALLBACK", ""],
[0x153, "PICO_UNKNOWN_INTELLIGENT_PROBE", ""],
[0x154, "PICO_INTELLIGENT_PROBE_CORRUPT", ""],
[0x155, "PICO_PROBE_COLLECTION_NOT_STARTED", ""],
[0x156, "PICO_PROBE_POWER_CONSUMPTION_EXCEEDED", ""],
[0x157, "PICO_WARNING_PROBE_CHANNEL_OUT_OF_SYNC", ""],
[0x158, "PICO_ENDPOINT_MISSING", ""],
[0x159, "PICO_UNKNOWN_ENDPOINT_REQUEST", ""],
[0x15A, "PICO_ADC_TYPE_ERROR", ""],
[0x15B, "PICO_FPGA2_FAILED", ""],
[0x15C, "PICO_FPGA2_DEVICE_STATUS", ""],
[0x15D, "PICO_ENABLED_PROGRAM_FPGA2_FAILED", ""],
[0x15E, "PICO_NO_CANNELS_OR_PORTS_ENABLED", ""],
[0x15F, "PICO_INVALID_RATIO_MODE", ""],
[0x160, "PICO_READS_NOT_SUPPORTED_IN_CURRENT_CAPTURE_MODE", ""],
[0x161, "PICO_TRIGGER_READ_SELECTION_CHECK_FAILED", ""],
[0x162, "PICO_DATA_READ1_SELECTION_CHECK_FAILED", ""],
[0x164, "PICO_DATA_READ2_SELECTION_CHECK_FAILED", ""],
[0x168, "PICO_DATA_READ3_SELECTION_CHECK_FAILED", ""],
[0x170, "PICO_READ_SELECTION_OUT_OF_RANGE", ""],
[0x171, "PICO_MULTIPLE_RATIO_MODES", ""],
[0x172, "PICO_NO_SAMPLES_READ", ""],
[0x173, "PICO_RATIO_MODE_NOT_REQUESTED", ""],
[0x174, "PICO_NO_USER_READ_REQUESTS", ""],
[0x175, "PICO_ZERO_SAMPLES_INVALID", ""],
[0x176, "PICO_ANALOGUE_HARDWARE_MISSING", ""],
[0x177, "PICO_ANALOGUE_HARDWARE_PINS", ""],
[0x178, "PICO_ANALOGUE_SMPS_FAULT", ""],
[0x179, "PICO_DIGITAL_ANALOGUE_HARDWARE_CONFLICT", ""],
[0x17A, "PICO_RATIO_MODE_BUFFER_NOT_SET", ""],
[0x17B, "PICO_RESOLUTION_NOT_SUPPORTED_BY_VARIENT", ""],
[0x17C, "PICO_THRESHOLD_OUT_OF_RANGE", ""],
[0x17D, "PICO_INVALID_SIMPLE_TRIGGER_DIRECTION", ""],
[0x17E, "PICO_AUX_NOT_SUPPORTED", ""],
[0x17F, "PICO_NULL_DIRECTIONS", ""],
[0x180, "PICO_NULL_CHANNEL_PROPERTIES", ""],
[0x181, "PICO_TRIGGER_CHANNEL_NOT_ENABLED", ""],
[0x182, "PICO_CONDITION_HAS_NO_TRIGGER_PROPERTY", ""],
[0x183, "PICO_RATIO_MODE_TRIGGER_MASKING_INVALID", ""],
[0x184, "PICO_TRIGGER_DATA_REQUIRES_MIN_BUFFER_SIZE_OF_40_SAMPLES", ""],
[0x185, "PICO_NO_OF_CAPTURES_OUT_OF_RANGE", ""],
[0x186, "PICO_RATIO_MODE_SEGMENT_HEADER_DOES_NOT_REQUIRE_BUFFERS", ""],
[0x187, "PICO_FOR_SEGMENT_HEADER_USE_GETTRIGGERINFO", ""],
[0x188, "PICO_READ_NOT_SET", ""],
[0x189, "PICO_ADC_SETTING_MISMATCH", ""],
[0x18A, "PICO_DATATYPE_INVALID", ""],
[0x18B, "PICO_RATIO_MODE_DOES_NOT_SUPPORT_DATATYPE", ""],
[0x18C, "PICO_CHANNEL_COMBINATION_NOT_VALID_IN_THIS_RESOLUTION", ""],
[0x18D, "PICO_USE_8BIT_RESOLUTION", ""],
[0x18E, "PICO_AGGREGATE_BUFFERS_SAME_POINTER", ""],
[0x18F, "PICO_OVERLAPPED_READ_VALUES_OUT_OF_RANGE", ""],
[0x190, "PICO_OVERLAPPED_READ_SEGMENTS_OUT_OF_RANGE", ""],
[0x191, "PICO_CHANNELFLAGSCOMBINATIONS_ARRAY_SIZE_TOO_SMALL", ""],
[0x192, "PICO_CAPTURES_EXCEEDS_NO_OF_SUPPORTED_SEGMENTS", ""],
[0x193, "PICO_TIME_UNITS_OUT_OF_RANGE", ""],
[0x194, "PICO_NO_SAMPLES_REQUESTED", ""],
[0x195, "PICO_INVALID_ACTION", ""],
[0x196, "PICO_NO_OF_SAMPLES_NEED_TO_BE_EQUAL_WHEN_ADDING_BUFFERS", ""],
[0x197, "PICO_WAITING_FOR_DATA_BUFFERS", ""],
[0x198, "PICO_STREAMING_ONLY_SUPPORTS_ONE_READ", ""],
[0x199, "PICO_CLEAR_DATA_BUFFER_INVALID", ""],
[0x19A, "PICO_INVALID_ACTION_FLAGS_COMBINATION", ""],
[0x19B, "PICO_PICO_MOTH_MIN_AND_MAX_NULL_BUFFERS_CANNOT_BE_ADDED", ""],
[0x19C,
"PICO_CONFLICT_IN_SET_DATA_BUFFERS_CALL_REMOVE_DATA_BUFFER_TO_RESET", ""],
[0x19D,
"PICO_REMOVING_DATA_BUFFER_ENTRIES_NOT_ALLOWED_WHILE_DATA_PROCESSING",
""],
[0x200, "PICO_CYUSB_REQUEST_FAILED", ""],
[0x201, "PICO_STREAMING_DATA_REQUIRED", ""],
[0x202, "PICO_INVALID_NUMBER_OF_SAMPLES", ""],
[0x203, "PICO_INALID_DISTRIBUTION", ""],
[0x204, "PICO_BUFFER_LENGTH_GREATER_THAN_INT32_T", ""],
[0x209, "PICO_PLL_MUX_OUT_FAILED", ""],
[0x20A, "PICO_ONE_PULSE_WIDTH_DIRECTION_ALLOWED", ""],
[0x20B, "PICO_EXTERNAL_TRIGGER_NOT_SUPPORTED", ""],
[0x20C, "PICO_NO_TRIGGER_CONDITIONS_SET", ""],
[0x20D, "PICO_NO_OF_CHANNEL_TRIGGER_PROPERTIES_OUT_OF_RANGE", ""],
[0x20E, "PICO_PROBE_COMPNENT_ERROR", ""],
[0x210, "PICO_INVALID_TRIGGER_CHANNELS_FOR_ETS", ""],
[0x211, "PICO_NOT_AVALIABLE_WHEN_STREAMING_IS_RUNNING", ""],
[0x212, "PICO_INVALID_TRIGGER_WITHIN_PRE_TRIGGER_STATE", ""],
[0x213, "PICO_ZERO_NUMBER_OF_CAPTURES_INVALID", ""],
[0x300, "PICO_TRIGGER_DELAY_OUT_OF_RANGE", ""],
[0x301, "PICO_INVALID_THRESHOLD_DIRECTION", ""],
[0x302, "PICO_INVALID_THRESGOLD_MODE", ""],
[0x6000, "PICO_HARDWARE_CAPTURE_TIMEOUT",
"waiting for the device to capture timed out"],
[0x6001, "PICO_HARDWARE_READY_TIMEOUT",
"waiting for the device be ready for capture timed out"],
[0x6002, "PICO_HARDWARE_CAPTURING_CALL_STOP",
("the driver is performing a capture requested by RunStreaming or "
"RunBlock to interrupt this capture call Stop on the device first")],
[0x2000001, "PICO_TRIGGER_TIME_NOT_REQUESTED",
"Requesting the TriggerTimeOffset, the trigger time has not been set."],
[0x1000000, "PICO_DEVICE_TIME_STAMP_RESET", ""],
[0x10000000, "PICO_WATCHDOGTIMER", ""],
[0x10000001, "PICO_IPP_NOT_FOUND", ""],
[0x10000002, "PICO_IPP_NO_FUNCTION", ""],
[0x10000003, "PICO_IPP_ERROR", ""],
[0x10000004, "PICO_SHADOW_CAL_NOT_AVAILABLE", ""],
[0x10000005, "PICO_SHADOW_CAL_DISABLED", ""],
[0x10000006, "PICO_SHADOW_CAL_ERROR", ""],
[0x10000007, "PICO_SHADOW_CAL_CORRUPT", ""],
]