forked from ni/nimi-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattributes.py
More file actions
1767 lines (1767 loc) · 85.4 KB
/
attributes.py
File metadata and controls
1767 lines (1767 loc) · 85.4 KB
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
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8 -*-
# This file is generated from NI-SCOPE API metadata version 25.0.0f151
attributes = {
1050005: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies whether or not to simulate instrument driver I/O operations. If simulation is enabled, instrument driver functions perform range checking and call Ivi_GetAttribute and Ivi_SetAttribute functions, but they do not perform instrument I/O. For output parameters that represent instrument data, the instrument driver functions return calculated values.\nThe default value is VI_FALSE. Use the niScope_InitWithOptions function to override this value.\n'
},
'lv_property': 'Inherent IVI Attributes:User Options:Simulate',
'name': 'SIMULATE',
'type': 'ViBoolean'
},
1050203: {
'access': 'read only',
'documentation': {
'description': '\nIndicates the number of channels that the specific instrument driver supports.\nFor channel-based properties, the IVI engine maintains a separate cache value for each channel.\n'
},
'lv_property': 'Inherent IVI Attributes:Driver Capabilities:Channel Count',
'name': 'CHANNEL_COUNT',
'type': 'ViInt32'
},
1050304: {
'access': 'read only',
'documentation': {
'description': '\nIndicates the resource descriptor the driver uses to identify the physical device. If you initialize the driver with a logical name, this attribute contains the resource descriptor that corresponds to the entry in the IVI Configuration utility.\nIf you initialize the instrument driver with the resource descriptor, this attribute contains that value.You can pass a logical name to niScope_Init or niScope_InitWithOptions. The IVI Configuration utility must contain an entry for the logical name. The logical name entry refers to a virtual instrument section in the IVI Configuration file. The virtual instrument section specifies a physical device and initial user options.\n'
},
'lv_property': 'Inherent IVI Attributes:Advanced Session Information:Resource Descriptor',
'name': 'IO_RESOURCE_DESCRIPTOR',
'type': 'ViString'
},
1050305: {
'access': 'read only',
'documentation': {
'description': '\nA string containing the logical name you specified when opening the current IVI session. You can pass a logical name to niScope_Init or niScope_InitWithOptions. The IVI Configuration utility must contain an entry for the logical name. The logical name entry refers to a virtual instrument section in the IVI Configuration file. The virtual instrument section specifies a physical device and initial user options.\n'
},
'lv_property': 'Inherent IVI Attributes:Advanced Session Information:Logical Name',
'name': 'LOGICAL_NAME',
'type': 'ViString'
},
1050327: {
'access': 'read only',
'documentation': {
'description': '\nA string that contains a comma-separated list of the instrument model numbers supported by this driver.\n'
},
'lv_property': 'Inherent IVI Attributes:Driver Capabilities:Supported Instrument Models',
'name': 'SUPPORTED_INSTRUMENT_MODELS',
'type': 'ViString'
},
1050510: {
'access': 'read only',
'documentation': {
'description': '\nA string that contains the firmware revision information for the instrument you are currently using.\n'
},
'lv_property': 'Inherent IVI Attributes:Instrument Identification:Firmware Revision',
'name': 'INSTRUMENT_FIRMWARE_REVISION',
'supported_rep_caps': [
'instruments'
],
'type': 'ViString'
},
1050511: {
'access': 'read only',
'documentation': {
'description': '\nA string that contains the name of the instrument manufacturer.\n'
},
'lv_property': 'Inherent IVI Attributes:Instrument Identification:Manufacturer',
'name': 'INSTRUMENT_MANUFACTURER',
'type': 'ViString'
},
1050512: {
'access': 'read only',
'documentation': {
'description': '\nA string that contains the model number of the current instrument.\n'
},
'lv_property': 'Inherent IVI Attributes:Instrument Identification:Model',
'name': 'INSTRUMENT_MODEL',
'type': 'ViString'
},
1050513: {
'access': 'read only',
'documentation': {
'description': '\nA string that contains the name of the vendor that supplies this driver.\n'
},
'lv_property': 'Inherent IVI Attributes:Driver Identification:Driver Vendor',
'name': 'SPECIFIC_DRIVER_VENDOR',
'type': 'ViString'
},
1050514: {
'access': 'read only',
'documentation': {
'description': '\nA string that contains a brief description of the specific driver\n'
},
'lv_property': 'Inherent IVI Attributes:Driver Identification:Description',
'name': 'SPECIFIC_DRIVER_DESCRIPTION',
'type': 'ViString'
},
1050551: {
'access': 'read only',
'documentation': {
'description': '\nA string that contains additional version information about this instrument driver.\n'
},
'lv_property': 'Inherent IVI Attributes:Driver Identification:Revision',
'name': 'SPECIFIC_DRIVER_REVISION',
'type': 'ViString'
},
1150001: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the number of records to acquire. Can be used for multi-record acquisition and single-record acquisitions. Setting this to 1 indicates a single-record acquisition.\n'
},
'lv_property': 'Horizontal:Number of Records',
'name': 'HORZ_NUM_RECORDS',
'type': 'ViInt32'
},
1150002: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the input source for the PLL reference clock (the 1 MHz to 20 MHz clock on the NI 5122, the 10 MHz clock for the NI 5112/5620/5621/5911) to which the digitizer will be phase-locked; for the NI 5102, this is the source of the board clock.\n'
},
'lv_property': 'Clocking:Reference (Input) Clock Source',
'name': 'INPUT_CLOCK_SOURCE',
'type': 'ViString'
},
1150003: {
'access': 'read-write',
'documentation': {
'description': "\nSpecifies the output source for the 10 MHz clock to which another digitizer's sample clock can be phased-locked.\n"
},
'lv_property': 'Clocking:Output Clock Source',
'name': 'OUTPUT_CLOCK_SOURCE',
'type': 'ViString'
},
1150004: {
'access': 'read-write',
'documentation': {
'description': '\nIndicates whether the digitizer enforces real-time measurements or allows equivalent-time measurements.\n'
},
'lv_property': 'Horizontal:Enforce Realtime',
'name': 'HORZ_ENFORCE_REALTIME',
'type': 'ViBoolean'
},
1150005: {
'access': 'read-write',
'documentation': {
'description': '\nIndicates the bit width of the binary data in the acquired waveform. Useful for determining which Binary Fetch function to use. Compare to NISCOPE_ATTR_RESOLUTION.\nTo configure the device to store samples with a lower resolution that the native, set this attribute to the desired binary width.\nThis can be useful for streaming at faster speeds at the cost of resolution. The least significant bits will be lost with this configuration.\nValid Values: 8, 16, 32\n'
},
'lv_property': 'Acquisition:Binary Sample Width',
'name': 'BINARY_SAMPLE_WIDTH',
'type': 'ViInt32'
},
1150006: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the size of the hysteresis window on either side of the trigger level. The digitizer triggers when the trigger signal passes through the threshold you specify with the Trigger Level parameter, has the slope you specify with the Trigger Slope parameter, and passes through the hysteresis window that you specify with this parameter.'
},
'lv_property': 'Triggering:Trigger Hysteresis',
'name': 'TRIGGER_HYSTERESIS',
'type': 'ViReal64'
},
1150008: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies whether you want the device to be a master or a slave. The master typically originates the trigger signal and clock sync pulse. For a standalone device, set this attribute to VI_FALSE.\n'
},
'lv_property': 'Synchronization:Master Enable',
'name': 'MASTER_ENABLE',
'type': 'ViBoolean'
},
1150009: {
'access': 'read-write',
'documentation': {
'description': '\nSpecify the sampling rate for the acquisition in Samples per second.\nValid Values:\nThe combination of sampling rate and min record length must allow the digitizer to sample at a valid sampling rate for the acquisition type specified in niScope_ConfigureAcquisition and not require more memory than the onboard memory module allows.\n'
},
'lv_property': 'Horizontal:Min Sample Rate',
'name': 'MIN_SAMPLE_RATE',
'type': 'ViReal64'
},
1150012: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies whether you want a trigger to occur when the signal enters or leaves the window specified by NISCOPE_ATTR_TRIGGER_WINDOW_LOW_LEVEL, or NISCOPE_ATTR_TRIGGER_WINDOW_HIGH_LEVEL.\n'
},
'enum': 'TriggerWindowMode',
'lv_property': 'Triggering:Trigger Window:Window Mode',
'name': 'TRIGGER_WINDOW_MODE',
'type': 'ViInt32'
},
1150013: {
'access': 'read-write',
'documentation': {
'description': '\nPass the lower voltage threshold you want the digitizer to use for window triggering.\nThe digitizer triggers when the trigger signal enters or leaves the window you specify with NISCOPE_ATTR_TRIGGER_WINDOW_LOW_LEVEL and NISCOPE_ATTR_TRIGGER_WINDOW_HIGH_LEVEL.\nUnits: Volts\nValid Values:\nThe values of the Vertical Range and Vertical Offset parameters in niScope_ConfigureVertical determine the valid range for the Low Window Level on the channel you use as the Trigger Source parameter in niScope_ConfigureTriggerSource. The value you pass for this parameter must meet the following conditions.\nLow Trigger Level <= Vertical Range/2 + Vertical Offset\nLow Trigger Level >= (-Vertical Range/2) + Vertical Offset\nLow Trigger Level < High Trigger Level\n'
},
'lv_property': 'Triggering:Trigger Window:Low Level',
'name': 'TRIGGER_WINDOW_LOW_LEVEL',
'type': 'ViReal64'
},
1150014: {
'access': 'read-write',
'documentation': {
'description': '\nPass the upper voltage threshold you want the digitizer to use for window triggering.\nThe digitizer triggers when the trigger signal enters or leaves the window you specify with NISCOPE_ATTR_TRIGGER_WINDOW_LOW_LEVEL and NISCOPE_ATTR_TRIGGER_WINDOW_HIGH_LEVEL\nValid Values:\nThe values of the Vertical Range and Vertical Offset parameters in niScope_ConfigureVertical determine the valid range for the High Window Level on the channel you use as the Trigger Source parameter in niScope_ConfigureTriggerSource. The value you pass for this parameter must meet the following conditions.\nHigh Trigger Level <= Vertical Range/2 + Vertical Offset\nHigh Trigger Level >= (-Vertical Range/2) + Vertical Offset\nHigh Trigger Level > Low Trigger Level\n'
},
'lv_property': 'Triggering:Trigger Window:High Level',
'name': 'TRIGGER_WINDOW_HIGH_LEVEL',
'type': 'ViReal64'
},
1150016: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nSpecifies the units of the reference levels.\nNISCOPE_VAL_MEAS_VOLTAGE--Specifies that the reference levels are given in units of volts\nNISCOPE_VAL_MEAS_PERCENTAGE--Percentage units, where the measurements voltage low and voltage high represent 0% and 100%, respectively.\nDefault: NISCOPE_VAL_MEAS_PERCENTAGE\n'
},
'enum': 'RefLevelUnits',
'lv_property': 'Waveform Measurement:Reference Levels:Units',
'name': 'MEAS_REF_LEVEL_UNITS',
'supported_rep_caps': [
'channels'
],
'type': 'ViInt32'
},
1150018: {
'access': 'read-write',
'attribute_class': 'AttributeViStringRepeatedCapability',
'codegen_method': 'public',
'documentation': {
'description': "\nSpecifies the second channel for two-channel measurements, such as NISCOPE_VAL_ADD_CHANNELS. If processing steps are registered with this channel, the processing is done before the waveform is used in a two-channel measurement.\nDefault: '0'\n"
},
'lv_property': 'Waveform Measurement:Other Channel',
'name': 'MEAS_OTHER_CHANNEL',
'supported_rep_caps': [
'channels'
],
'type': 'ViString',
'type_in_documentation': 'str or int'
},
1150019: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nDigital hysteresis that is used in several of the scalar waveform measurements. This attribute specifies the percentage of the full-scale vertical range for the hysteresis window size.\nDefault: 2%\n'
},
'lv_property': 'Waveform Measurement:Hysteresis Percent',
'name': 'MEAS_HYSTERESIS_PERCENT',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150020: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nSpecifies the size (that is, the number of bins) in the last acquisition histogram. This histogram is used to determine several scalar measurements, most importantly voltage low and voltage high.\nDefault: 256\n'
},
'lv_property': 'Waveform Measurement:Last Acq. Histogram Size',
'name': 'MEAS_LAST_ACQ_HISTOGRAM_SIZE',
'supported_rep_caps': [
'channels'
],
'type': 'ViInt32'
},
1150021: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nDetermines the multiple acquisition voltage histogram size. The size is set the first time a voltage histogram measurement is called after clearing the measurement history with the function niScope_ClearWaveformMeasurementStats.\nDefault: 256\n'
},
'lv_property': 'Waveform Measurement:Voltage Histogram:Size',
'name': 'MEAS_VOLTAGE_HISTOGRAM_SIZE',
'supported_rep_caps': [
'channels'
],
'type': 'ViInt32'
},
1150022: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nSpecifies the lowest voltage value included in the multiple-acquisition voltage histogram. The units are always volts.\nDefault: -10.0 V\n'
},
'lv_property': 'Waveform Measurement:Voltage Histogram:Low Volts',
'name': 'MEAS_VOLTAGE_HISTOGRAM_LOW_VOLTS',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150023: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nSpecifies the highest voltage value included in the multiple acquisition voltage histogram. The units are always volts.\nDefault: 10.0 V\n'
},
'lv_property': 'Waveform Measurement:Voltage Histogram:High Volts',
'name': 'MEAS_VOLTAGE_HISTOGRAM_HIGH_VOLTS',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150024: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nDetermines the multiple acquisition voltage histogram size. The size is set during the first call to a time histogram measurement after clearing the measurement history with niScope_ClearWaveformMeasurementStats.\nDefault: 256\n'
},
'lv_property': 'Waveform Measurement:Time Histogram:Size',
'name': 'MEAS_TIME_HISTOGRAM_SIZE',
'supported_rep_caps': [
'channels'
],
'type': 'ViInt32'
},
1150025: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nSpecifies the lowest voltage value included in the multiple acquisition time histogram. The units are always volts.\nDefault: -10.0 V\n'
},
'lv_property': 'Waveform Measurement:Time Histogram:Low Volts',
'name': 'MEAS_TIME_HISTOGRAM_LOW_VOLTS',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150026: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nSpecifies the highest voltage value included in the multiple-acquisition time histogram. The units are always volts.\nDefault: 10.0 V\n'
},
'lv_property': 'Waveform Measurement:Time Histogram:High Volts',
'name': 'MEAS_TIME_HISTOGRAM_HIGH_VOLTS',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150027: {
'access': 'read-write',
'attribute_class': 'AttributeViReal64TimeDeltaSeconds',
'codegen_method': 'public',
'documentation': {
'description': '\nSpecifies the lowest time value included in the multiple-acquisition time histogram. The units are always seconds.\nDefault: -5.0e-4 seconds\n'
},
'lv_property': 'Waveform Measurement:Time Histogram:Low Time',
'name': 'MEAS_TIME_HISTOGRAM_LOW_TIME',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64',
'type_in_documentation': 'hightime.timedelta, datetime.timedelta, or float in seconds'
},
1150028: {
'access': 'read-write',
'attribute_class': 'AttributeViReal64TimeDeltaSeconds',
'codegen_method': 'public',
'documentation': {
'description': '\nSpecifies the highest time value included in the multiple acquisition time histogram. The units are always seconds.\nDefault: 5.0e-4 seconds\n'
},
'lv_property': 'Waveform Measurement:Time Histogram:High Time',
'name': 'MEAS_TIME_HISTOGRAM_HIGH_TIME',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64',
'type_in_documentation': 'hightime.timedelta, datetime.timedelta, or float in seconds'
},
1150029: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nSpecifies the polynomial order used for the polynomial interpolation measurement. For example, an order of 1 is linear interpolation whereas an order of 2 specifies parabolic interpolation. Any positive integer is valid.\nDefault: 1\n'
},
'lv_property': 'Waveform Measurement:Interpolation:Polynomial Interpolation Order',
'name': 'MEAS_POLYNOMIAL_INTERPOLATION_ORDER',
'supported_rep_caps': [
'channels'
],
'type': 'ViInt32'
},
1150030: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nThe new number of points for polynomial interpolation is the sampling factor times the input number of points. For example, if you acquire 1,000 points with the digitizer and set this attribute to 2.5, calling niScope_FetchWaveformMeasurementArray with the NISCOPE_VAL_POLYNOMIAL_INTERPOLATION measurement resamples the waveform to 2,500 points.\nDefault: 2.0\n'
},
'lv_property': 'Waveform Measurement:Interpolation:Sampling Factor',
'name': 'MEAS_INTERPOLATION_SAMPLING_FACTOR',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150031: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nSpecifies the cutoff frequency in hertz for filters of type lowpass and highpass. The cutoff frequency definition varies depending on the filter.\nDefault: 1.0e6 Hz\n'
},
'lv_property': 'Waveform Measurement:Filter:Cutoff Frequency',
'name': 'MEAS_FILTER_CUTOFF_FREQ',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150032: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nThe center frequency in hertz for filters of type bandpass and bandstop. The width of the filter is specified by NISCOPE_ATTR_MEAS_FILTER_WIDTH, where the cutoff frequencies are the center ± width.\nDefault: 1.0e6 Hz\n'
},
'lv_property': 'Waveform Measurement:Filter:Center Frequency',
'name': 'MEAS_FILTER_CENTER_FREQ',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150033: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nSpecifies the amount of ripple in the passband in units of decibels (positive values). Used only for Chebyshev filters. The more ripple allowed gives a sharper cutoff for a given filter order.\nDefault: 0.1 dB\n'
},
'lv_property': 'Waveform Measurement:Filter:Ripple',
'name': 'MEAS_FILTER_RIPPLE',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150034: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nThe percentage (0 - 100%) of the IIR filtered waveform to eliminate from the beginning of the waveform. This allows eliminating the transient portion of the waveform that is undefined due to the assumptions necessary at the boundary condition.\nDefault: 20.0%\n'
},
'lv_property': 'Waveform Measurement:Filter:Percent Waveform Transient',
'name': 'MEAS_FILTER_TRANSIENT_WAVEFORM_PERCENT',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150035: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nSpecifies the type of filter, for both IIR and FIR filters. The allowed values are the following:\n· NISCOPE_VAL_MEAS_LOWPASS\n· NISCOPE_VAL_MEAS_HIGHPASS\n· NISCOPE_VAL_MEAS_BANDPASS\n· NISCOPE_VAL_MEAS_BANDSTOP\nDefault: NISCOPE_VAL_MEAS_LOWPASS\n'
},
'enum': 'FilterType',
'lv_property': 'Waveform Measurement:Filter:Type',
'name': 'MEAS_FILTER_TYPE',
'supported_rep_caps': [
'channels'
],
'type': 'ViInt32'
},
1150036: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nSpecifies the order of an IIR filter. All positive integers are valid.\nDefault: 2\n'
},
'lv_property': 'Waveform Measurement:Filter:IIR Order',
'name': 'MEAS_FILTER_ORDER',
'supported_rep_caps': [
'channels'
],
'type': 'ViInt32'
},
1150037: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nDefines the number of taps (coefficients) for an FIR filter.\nDefault: 25\n'
},
'lv_property': 'Waveform Measurement:Filter:FIR Taps',
'name': 'MEAS_FILTER_TAPS',
'supported_rep_caps': [
'channels'
],
'type': 'ViInt32'
},
1150038: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nStores the low reference level used in many scalar measurements. Different channels may have different reference levels. Do not use the IVI-defined, nonchannel-based attributes such as NISCOPE_ATTR_MEAS_LOW_REF if you use this attribute to set various channels to different values.\nDefault: 10%\n'
},
'lv_property': 'Waveform Measurement:Reference Levels:Channel Based Low Ref Level',
'name': 'MEAS_CHAN_LOW_REF_LEVEL',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150039: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nStores the mid reference level used in many scalar measurements. Different channels may have different reference levels. Do not use the IVI-defined, nonchannel-based attributes such as NISCOPE_ATTR_MEAS_MID_REF if you use this attribute to set various channels to different values.\nDefault: 50%\n'
},
'lv_property': 'Waveform Measurement:Reference Levels:Channel Based Mid Ref Level',
'name': 'MEAS_CHAN_MID_REF_LEVEL',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150040: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nStores the high reference level used in many scalar measurements. Different channels may have different reference levels. Do not use the IVI-defined, nonchannel-based attributes such as NISCOPE_ATTR_MEAS_HIGH_REF if you use this attribute to set various channels to different values.\nDefault: 90%\n'
},
'lv_property': 'Waveform Measurement:Reference Levels:Channel Based High Ref Level',
'name': 'MEAS_CHAN_HIGH_REF_LEVEL',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150041: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nSpecifies the width of bandpass and bandstop type filters in hertz. The cutoff frequencies occur at NISCOPE_ATTR_MEAS_FILTER_CENTER_FREQ ± one-half width.\nDefault: 1.0e3 Hz\n'
},
'lv_property': 'Waveform Measurement:Filter:Width',
'name': 'MEAS_FILTER_WIDTH',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150042: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nSpecifies the FIR window type. The possible choices are:\nNISCOPE_VAL_NONE\nNISCOPE_VAL_HANNING_WINDOW\nNISCOPE_VAL_HAMMING_WINDOW\nNISCOPE_VAL_TRIANGLE_WINDOW\nNISCOPE_VAL_FLAT_TOP_WINDOW\nNISCOPE_VAL_BLACKMAN_WINDOW\nThe symmetric windows are applied to the FIR filter coefficients to limit passband ripple in FIR filters.\nDefault: NISCOPE_VAL_NONE\n'
},
'enum': 'FIRFilterWindow',
'lv_property': 'Waveform Measurement:Filter:FIR Window',
'name': 'MEAS_FIR_FILTER_WINDOW',
'supported_rep_caps': [
'channels'
],
'type': 'ViInt32'
},
1150043: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nEvery element of an array is multiplied by this scalar value during the Array Gain measurement. Refer to NISCOPE_VAL_ARRAY_GAIN for more information.\nDefault: 1.0\n'
},
'lv_property': 'Waveform Measurement:Array Gain',
'name': 'MEAS_ARRAY_GAIN',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150044: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nEvery element of an array is added to this scalar value during the Array Offset measurement. Refer to NISCOPE_VAL_ARRAY_OFFSET for more information.\nDefault: 0.0\n'
},
'lv_property': 'Waveform Measurement:Array Offset',
'name': 'MEAS_ARRAY_OFFSET',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150045: {
'access': 'read-write',
'codegen_method': 'public',
'documentation': {
'description': '\nSpecifies the method used to map percentage reference units to voltages for the reference. Possible values are:\nNISCOPE_VAL_MEAS_LOW_HIGH\nNISCOPE_VAL_MEAS_MIN_MAX\nNISCOPE_VAL_MEAS_BASE_TOP\nDefault: NISCOPE_VAL_MEAS_BASE_TOP\n'
},
'enum': 'PercentageMethod',
'lv_property': 'Waveform Measurement:Reference Levels:Percentage Units Method',
'name': 'MEAS_PERCENTAGE_METHOD',
'supported_rep_caps': [
'channels'
],
'type': 'ViInt32'
},
1150053: {
'access': 'read-write',
'documentation': {
'description': "\nSpecifies the source the digitizer monitors for a start (acquisition arm) trigger. When the start trigger is received, the digitizer begins acquiring pretrigger samples.\nValid Values:\nNISCOPE_VAL_IMMEDIATE ('VAL_IMMEDIATE') - Triggers immediately\nNISCOPE_VAL_RTSI_0 ('VAL_RTSI_0') - RTSI 0\nNISCOPE_VAL_RTSI_1 ('VAL_RTSI_1') - RTSI 1\nNISCOPE_VAL_RTSI_2 ('VAL_RTSI_2') - RTSI 2\nNISCOPE_VAL_RTSI_3 ('VAL_RTSI_3') - RTSI 3\nNISCOPE_VAL_RTSI_4 ('VAL_RTSI_4') - RTSI 4\nNISCOPE_VAL_RTSI_5 ('VAL_RTSI_5') - RTSI 5\nNISCOPE_VAL_RTSI_6 ('VAL_RTSI_6') - RTSI 6\nNISCOPE_VAL_PFI_0 ('VAL_PFI_0') - PFI 0\nNISCOPE_VAL_PFI_1 ('VAL_PFI_1') - PFI 1\nNISCOPE_VAL_PFI_2 ('VAL_PFI_2') - PFI 2\nNISCOPE_VAL_PXI_STAR ('VAL_PXI_STAR') - PXI Star Trigger\n"
},
'lv_property': 'Synchronization:Start Trigger (Acq. Arm):Source',
'name': 'ACQ_ARM_SOURCE',
'type': 'ViString'
},
1150065: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the record arm source.\n'
},
'lv_property': 'Synchronization:Record Arm Source',
'name': 'RECORD_ARM_SOURCE',
'type': 'ViString'
},
1150066: {
'access': 'read only',
'name': 'IS_PROBE_COMP_ON',
'supported_rep_caps': [
'instruments'
],
'type': 'ViBoolean'
},
1150067: {
'access': 'read-write',
'name': 'USE_SPEC_INITIAL_X',
'type': 'ViBoolean'
},
1150068: {
'access': 'read-write',
'documentation': {
'description': '\nIndicates whether more records can be configured with niScope_ConfigureHorizontalTiming than fit in the onboard memory. If this attribute is set to VI_TRUE, it is necessary to fetch records while the acquisition is in progress. Eventually, some of the records will be overwritten. An error is returned from the fetch function if you attempt to fetch a record that has been overwritten.\n'
},
'lv_property': 'Horizontal:Enable Records > Memory',
'name': 'ALLOW_MORE_RECORDS_THAN_MEMORY',
'type': 'ViBoolean'
},
1150069: {
'access': 'read only',
'documentation': {
'description': '\nReturns the total combined amount of onboard memory for all channels in bytes.\n'
},
'lv_property': 'Horizontal:Memory Size',
'name': 'ONBOARD_MEMORY_SIZE',
'supported_rep_caps': [
'instruments'
],
'type': 'ViInt32'
},
1150070: {
'access': 'read-write',
'documentation': {
'description': '\nThe number of averages for each bin in an RIS acquisition. The number of averages times the oversampling factor is the minimum number of real-time acquisitions necessary to reconstruct the RIS waveform. Averaging is useful in RIS because the trigger times are not evenly spaced, so adjacent points in the reconstructed waveform not be accurately spaced. By averaging, the errors in both time and voltage are smoothed.\n'
},
'lv_property': 'Horizontal:RIS Num Avg',
'name': 'RIS_NUM_AVERAGES',
'type': 'ViInt32'
},
1150071: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the algorithm for random-interleaved sampling, which is used if the sample rate exceeds the value of NISCOPE_ATTR_MAX_REAL_TIME_SAMPLING_RATE.\n'
},
'enum': 'RISMethod',
'lv_property': 'Horizontal:RIS Method',
'name': 'RIS_METHOD',
'type': 'ViInt32'
},
1150073: {
'access': 'read only',
'documentation': {
'description': '\nReturns the maximum real time sample rate in Hz.\n'
},
'lv_property': 'Horizontal:Maximum Real Time Sample Rate',
'name': 'MAX_REAL_TIME_SAMPLING_RATE',
'type': 'ViReal64'
},
1150074: {
'access': 'read only',
'documentation': {
'description': '\nReturns the maximum sample rate in RIS mode in Hz.\n'
},
'lv_property': 'Horizontal:Maximum RIS Rate',
'name': 'MAX_RIS_RATE',
'type': 'ViReal64'
},
1150075: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the input impedance for the external analog trigger channel in Ohms.\nValid Values:\n50 - 50 ohms\n1000000 - 1 mega ohm\n'
},
'lv_property': 'Triggering:Trigger Impedance',
'name': 'TRIGGER_IMPEDANCE',
'type': 'ViReal64'
},
1150077: {
'access': 'read-write',
'codegen_method': 'private',
'documentation': {
'description': '\nPosition to start fetching within one record.\nDefault Value: NISCOPE_VAL_PRETRIGGER\n'
},
'enum': 'FetchRelativeTo',
'lv_property': 'Fetch:Fetch Relative To',
'name': 'FETCH_RELATIVE_TO',
'type': 'ViInt32'
},
1150078: {
'access': 'read-write',
'codegen_method': 'private',
'documentation': {
'description': '\nOffset in samples to start fetching data within each record. The offset is applied relative to NISCOPE_ATTR_FETCH_RELATIVE_TO.The offset can be positive or negative.\nDefault Value: 0\n'
},
'lv_property': 'Fetch:Fetch Offset',
'name': 'FETCH_OFFSET',
'type': 'ViInt32'
},
1150079: {
'access': 'read-write',
'codegen_method': 'private',
'documentation': {
'description': '\nZero-based index of the first record to fetch. Use NISCOPE_FETCH_NUM_RECORDS to set the number of records to fetch.\nDefault Value: 0.\n'
},
'lv_property': 'Fetch:Fetch Record Number',
'name': 'FETCH_RECORD_NUMBER',
'type': 'ViInt32'
},
1150080: {
'access': 'read-write',
'codegen_method': 'private',
'documentation': {
'description': '\nNumber of records to fetch. Use -1 to fetch all configured records.\nDefault Value: -1\n'
},
'lv_property': 'Fetch:Fetch Number of Records',
'name': 'FETCH_NUM_RECORDS',
'type': 'ViInt32'
},
1150081: {
'access': 'read-write',
'codegen_method': 'private',
'documentation': {
'description': '\nNumber of samples to fetch when performing a measurement. Use -1 to fetch the actual record length.\nDefault Value: -1\n'
},
'lv_property': 'Fetch:Fetch Meas Num Samples',
'name': 'FETCH_MEAS_NUM_SAMPLES',
'type': 'ViInt32'
},
1150082: {
'access': 'read only',
'documentation': {
'description': '\nActual number of samples acquired in the record specified by NISCOPE_ATTR_FETCH_RECORD_NUMBER from the NISCOPE_ATTR_FETCH_RELATIVE_TO and NISCOPE_ATTR_FETCH_OFFSET attributes.\n'
},
'lv_property': 'Fetch:Points Done',
'name': 'POINTS_DONE',
'type': 'ViReal64'
},
1150083: {
'access': 'read only',
'documentation': {
'description': '\nSpecifies the number of records that have been completely acquired.\n'
},
'lv_property': 'Fetch:Records Done',
'name': 'RECORDS_DONE',
'type': 'ViInt32'
},
1150084: {
'access': 'read only',
'documentation': {
'description': '\nReturns the number of samples (NISCOPE_ATTR_POINTS_DONE) that have been acquired but not fetched for the record specified by NISCOPE_ATTR_FETCH_RECORD_NUMBER.\n'
},
'lv_property': 'Fetch:Fetch Backlog',
'name': 'BACKLOG',
'type': 'ViReal64'
},
1150086: {
'access': 'read only',
'documentation': {
'description': '\nReturns the temperature of the device in degrees Celsius from the onboard sensor.\n'
},
'lv_property': 'Device:Temperature',
'name': 'DEVICE_TEMPERATURE',
'supported_rep_caps': [
'instruments'
],
'type': 'ViReal64'
},
1150087: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the source of the sample clock timebase, which is the timebase used to control waveform sampling. The actual sample rate may be the timebase itself or a divided version of the timebase, depending on the NISCOPE_ATTR_MIN_SAMPLE_RATE (for internal sources) or the NISCOPE_ATTR_SAMP_CLK_TIMEBASE_DIV (for external sources).\n'
},
'lv_property': 'Clocking:Sample Clock Timebase Source',
'name': 'SAMP_CLK_TIMEBASE_SRC',
'type': 'ViString'
},
1150088: {
'access': 'read-write',
'documentation': {
'description': '\nIf NISCOPE_ATTR_SAMP_CLK_TIMEBASE_SRC is an external source, specifies the frequency in hertz of the external clock used as the timebase source.\n'
},
'lv_property': 'Clocking:Sample Clock Timebase Rate',
'name': 'SAMP_CLK_TIMEBASE_RATE',
'type': 'ViReal64'
},
1150089: {
'access': 'read-write',
'documentation': {
'description': '\nIf NISCOPE_ATTR_SAMP_CLK_TIMEBASE_SRC is an external source, specifies the ratio between the sample clock timebase rate and the actual sample rate, which can be slower.\n'
},
'lv_property': 'Clocking:Sample Clock Timebase Divisor',
'name': 'SAMP_CLK_TIMEBASE_DIV',
'type': 'ViInt32'
},
1150090: {
'access': 'read-write',
'documentation': {
'description': '\nIf NISCOPE_ATTR_INPUT_CLOCK_SOURCE is an external source, this attribute specifies the frequency of the input, or reference clock, to which the internal sample clock timebase is synchronized. The frequency is in hertz.\n'
},
'lv_property': 'Clocking:Reference Clock Rate',
'name': 'REF_CLK_RATE',
'type': 'ViReal64'
},
1150093: {
'access': 'read-write',
'documentation': {
'description': "\nRestores the video-triggered data retrieved by the digitizer to the video signal's zero reference point.\nValid Values:\nVI_TRUE - Enable DC restore\nVI_FALSE - Disable DC restore\n"
},
'lv_property': 'Triggering:Trigger Video:Enable DC Restore',
'name': 'ENABLE_DC_RESTORE',
'type': 'ViBoolean'
},
1150094: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the source the digitizer monitors for an advance trigger. When the advance trigger is received, the digitizer begins acquiring pretrigger samples.\n'
},
'lv_property': 'Synchronization:Advance Trigger:Source',
'name': 'ADV_TRIG_SRC',
'type': 'ViString'
},
1150095: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the source the digitizer monitors for an arm reference trigger. When the arm reference trigger is received, the digitizer begins looking for a reference (stop) trigger from the user-configured trigger source.\n'
},
'lv_property': 'Synchronization:Arm Reference Trigger:Source',
'name': 'ARM_REF_TRIG_SRC',
'type': 'ViString'
},
1150096: {
'access': 'read-write',
'documentation': {
'description': '\nThis attribute controls whether the TDC is used to compute an accurate trigger.\n'
},
'lv_property': 'Horizontal:Advanced:Enable TDC',
'name': 'REF_TRIG_TDC_ENABLE',
'type': 'ViBoolean'
},
1150097: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the destination to export the Start trigger. When the start trigger is received, the digitizer begins acquiring samples.\nConsult your device documentation for a specific list of valid destinations.\n'
},
'lv_property': 'Synchronization:Start Trigger (Acq. Arm):Output Terminal',
'name': 'EXPORTED_START_TRIGGER_OUTPUT_TERMINAL',
'type': 'ViString'
},
1150098: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the destination export for the reference (stop) trigger.\nConsult your device documentation for a specific list of valid destinations.\n'
},
'lv_property': 'Triggering:Trigger Output Terminal',
'name': 'EXPORTED_REF_TRIGGER_OUTPUT_TERMINAL',
'type': 'ViString'
},
1150099: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the destination for the End of Record Event. When this event is asserted, the digitizer has completed sampling for the current record.\nConsult your device documentation for a specific list of valid destinations.\n'
},
'lv_property': 'Synchronization:End of Record:Output Terminal',
'name': 'END_OF_RECORD_EVENT_OUTPUT_TERMINAL',
'type': 'ViString'
},
1150100: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the poll interval in milliseconds to use during RIS acquisitions to check whether the acquisition is complete.\n'
},
'lv_property': '',
'name': 'POLL_INTERVAL',
'type': 'ViInt32'
},
1150101: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the destination for the End of Acquisition Event. When this event is asserted, the digitizer has completed sampling for all records.\nConsult your device documentation for a specific list of valid destinations.\n'
},
'lv_property': 'Synchronization:End of Acquisition:Output Terminal',
'name': 'END_OF_ACQUISITION_EVENT_OUTPUT_TERMINAL',
'type': 'ViString'
},
1150102: {
'access': 'read only',
'documentation': {
'description': '\nIndicates the bit width of valid data (as opposed to padding bits) in the acquired waveform. Compare to NISCOPE_ATTR_BINARY_SAMPLE_WIDTH.\n'
},
'lv_property': 'Acquisition:Resolution',
'name': 'RESOLUTION',
'type': 'ViInt32'
},
1150103: {
'access': 'read-write',
'attribute_class': 'AttributeViReal64TimeDeltaSeconds',
'documentation': {
'description': '\nPass the length of time you want the digitizer to wait after it starts acquiring data until the digitizer enables the trigger system to detect a reference (stop) trigger.\nUnits: Seconds\nValid Values: 0.0 - 171.8\n'
},
'lv_property': 'Triggering:Start To Ref Trigger Holdoff',
'name': 'START_TO_REF_TRIGGER_HOLDOFF',
'type': 'ViReal64',
'type_in_documentation': 'hightime.timedelta, datetime.timedelta, or float in seconds'
},
1150104: {
'access': 'read only',
'documentation': {
'description': '\nReturns the serial number of the device.\n'
},
'lv_property': 'Device:Serial Number',
'name': 'SERIAL_NUMBER',
'supported_rep_caps': [
'instruments'
],
'type': 'ViString'
},
1150106: {
'access': 'read-write',
'documentation': {
'description': '\nIndicates whether the digitizer should use RIS sample rates when searching for a frequency in autosetup.\nValid Values:\nVI_TRUE (1) - Use RIS sample rates in autosetup\nVI_FALSE (0) - Do not use RIS sample rates in autosetup\n'
},
'lv_property': 'Acquisition:Advanced:Enable RIS in Auto Setup',
'name': 'RIS_IN_AUTO_SETUP_ENABLE',
'type': 'ViBoolean'
},
1150107: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the terminal configuration for the channel.\n'
},
'enum': 'TerminalConfiguration',
'lv_property': 'Vertical:Channel Terminal Configuration',
'name': 'CHANNEL_TERMINAL_CONFIGURATION',
'supported_rep_caps': [
'channels'
],
'type': 'ViInt32'
},
1150109: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the destination to export the advance trigger. When the advance trigger is received, the digitizer begins acquiring samples for the Nth record.\nConsult your device documentation for a specific list of valid destinations.\n'
},
'lv_property': 'Synchronization:Advance Trigger:Output Terminal',
'name': 'EXPORTED_ADVANCE_TRIGGER_OUTPUT_TERMINAL',
'type': 'ViString'
},
1150110: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the destination for the Ready for Start Event. When this event is asserted, the digitizer is ready to receive a start trigger.\nConsult your device documentation for a specific list of valid destinations.\n'
},
'lv_property': 'Synchronization:Ready for Start:Output Terminal',
'name': 'READY_FOR_START_EVENT_OUTPUT_TERMINAL',
'type': 'ViString'
},
1150111: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the destination for the Ready for Reference Event. When this event is asserted, the digitizer is ready to receive a reference trigger.\nConsult your device documentation for a specific list of valid destinations.\n'
},
'lv_property': 'Synchronization:Ready for Reference:Output Terminal',
'name': 'READY_FOR_REF_EVENT_OUTPUT_TERMINAL',
'type': 'ViString'
},
1150112: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the destination for the Ready for Advance Event. When this event is asserted, the digitizer is ready to receive an advance trigger.\nConsult your device documentation for a specific list of valid destinations.\n'
},
'lv_property': 'Synchronization:Ready for Advance:Output Terminal',
'name': 'READY_FOR_ADVANCE_EVENT_OUTPUT_TERMINAL',
'type': 'ViString'
},
1150128: {
'access': 'read-write',
'documentation': {
'description': "\nSpecifies whether the digitizer acquires the waveform using multiple ADCs for the channel enabling a higher maximum real-time sampling rate.\nValid Values:\nVI_TRUE (1) - Use multiple interleaved ADCs on this channel\nVI_FALSE (0) - Use only this channel's ADC to acquire data for this channel\n"
},
'lv_property': 'Horizontal:Enable Time Interleaved Sampling',
'name': 'ENABLE_TIME_INTERLEAVED_SAMPLING',
'supported_rep_caps': [
'channels'
],
'type': 'ViBoolean'
},
1150132: {