-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathattributes.py
executable file
·1253 lines (1253 loc) · 63.4 KB
/
attributes.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
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-FGEN API metadata version 25.0.0f114
attributes = {
1050005: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies whether to simulate NI-FGEN I/O operations. If simulation is enabled, NI-FGEN functions perform range checking and call Ivi_GetAttribute and Ivi_SetAttribute, but they do not perform device I/O. For output parameters that represent device data, NI-FGEN functions return calculated values.\nDefault Value: VI_FALSE\nUse niFgen_InitWithOptions to override default value.\n'
},
'lv_property': 'Instrument:Inherent IVI Attributes:User Options:Simulate',
'name': 'SIMULATE',
'type': 'ViBoolean'
},
1050007: {
'access': 'read only',
'documentation': {
'description': 'Specifies the driver setup portion of the option string that was passed into the niFgen_InitWithOptions function.'
},
'lv_property': '',
'name': 'DRIVER_SETUP',
'type': 'ViString'
},
1050203: {
'access': 'read only',
'documentation': {
'description': '\nIndicates the number of channels that the specific instrument driver supports.\nFor each attribute for which IVI_VAL_MULTI_CHANNEL is set, the IVI Engine maintains a separate cache value for each channel.\n'
},
'lv_property': 'Instrument:Inherent IVI Attributes:Driver Capabilities:Channel Count',
'name': 'NUM_CHANNELS',
'python_name': 'channel_count',
'type': 'ViInt32'
},
1050304: {
'access': 'read only',
'documentation': {
'description': '\nIndicates the resource descriptor that NI-FGEN uses to identify the physical device.\nIf you initialize NI-FGEN with a logical name, this attribute contains the resource descriptor that corresponds to the entry in the IVI Configuration Utility.\nIf you initialize NI-FGEN with the resource descriptor, this attribute contains that value.\n'
},
'lv_property': 'Instrument: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 that you specified when opening the current IVI session.\nYou may pass a logical name to niFgen_init or niFgen_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': 'Instrument:Inherent IVI Attributes:Advanced Session Information:Logical Name',
'name': 'LOGICAL_NAME',
'type': 'ViString'
},
1050327: {
'access': 'read only',
'documentation': {
'description': '\nReturns a model code of the device. For NI-FGEN versions that support more than one device, this attribute contains a comma-separated list of supported device models.\n'
},
'lv_property': 'Instrument:Inherent IVI Attributes:Driver Capabilities:Supported Instrument Models',
'name': 'SUPPORTED_INSTRUMENT_MODELS',
'type': 'ViString'
},
1050503: {
'access': 'read only',
'documentation': {
'description': 'Returns the major version number of NI-FGEN.'
},
'lv_property': 'Instrument:Obsolete:Major Version',
'name': 'SPECIFIC_DRIVER_MAJOR_VERSION',
'python_name': 'major_version',
'type': 'ViInt32'
},
1050504: {
'access': 'read only',
'documentation': {
'description': 'Returns the minor version number of NI-FGEN.'
},
'lv_property': 'Instrument:Obsolete:Minor Version',
'name': 'SPECIFIC_DRIVER_MINOR_VERSION',
'python_name': 'minor_version',
'type': 'ViInt32'
},
1050510: {
'access': 'read only',
'documentation': {
'description': '\nA string that contains the firmware revision information for the device that you are currently using.\n'
},
'lv_property': 'Instrument:Inherent IVI Attributes:Instrument Identification:Firmware Revision',
'name': 'INSTRUMENT_FIRMWARE_REVISION',
'type': 'ViString'
},
1050511: {
'access': 'read only',
'documentation': {
'description': '\nA string that contains the name of the device manufacturer you are currently using.\n'
},
'lv_property': 'Instrument:Inherent IVI Attributes:Instrument Identification:Manufacturer',
'name': 'INSTRUMENT_MANUFACTURER',
'type': 'ViString'
},
1050512: {
'access': 'read only',
'documentation': {
'description': '\nA string that contains the model number or name of the device that you are currently using.\n'
},
'lv_property': 'Instrument: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 NI-FGEN.\n'
},
'lv_property': 'Instrument:Inherent IVI Attributes:Driver Identification:Driver Vendor',
'name': 'SPECIFIC_DRIVER_VENDOR',
'type': 'ViString'
},
1050514: {
'access': 'read only',
'documentation': {
'description': '\nReturns a brief description of NI-FGEN.\n'
},
'lv_property': 'Instrument: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 NI-FGEN.\n'
},
'lv_property': 'Instrument:Inherent IVI Attributes:Driver Identification:Revision',
'name': 'SPECIFIC_DRIVER_REVISION',
'type': 'ViString'
},
1150101: {
'access': 'read-write',
'documentation': {
'description': 'Controls whether the signal generator generates a digital pattern of the output signal.'
},
'lv_property': 'Output:Advanced:Digital Pattern Enabled',
'name': 'DIGITAL_PATTERN_ENABLED',
'type': 'ViBoolean'
},
1150102: {
'access': 'read-write',
'documentation': {
'description': 'Controls whether the signal generator applies a digital filter to the output signal. This attribute is valid in arbitrary waveform, arbitrary sequence, and script modes. This attribute can also be used in standard function and frequency list modes for user-defined waveforms.'
},
'lv_property': 'Output:Filters:Digital Filter Enabled',
'name': 'DIGITAL_FILTER_ENABLED',
'type': 'ViBoolean'
},
1150103: {
'access': 'read-write',
'documentation': {
'description': 'Controls whether the signal generator applies to an analog filter to the output signal. This attribute is valid in arbitrary waveform, arbitrary sequence, and script modes. This attribute can also be used in standard function and frequency list modes for user-defined waveforms.'
},
'lv_property': 'Output:Filters:Analog Filter Enabled',
'name': 'ANALOG_FILTER_ENABLED',
'type': 'ViBoolean'
},
1150104: {
'access': 'read-write',
'documentation': {
'description': 'Controls the filter correction frequency of the analog filter. This attribute corrects for the ripples in the analog filter frequency response at the frequency specified. For standard waveform output, the filter correction frequency should be set to be the same as the frequency of the standard waveform. To have no filter correction, set this attribute to 0 Hz.'
},
'lv_property': 'Instrument:5401/5411/5431:Filter Correction Frequency',
'name': 'FILTER_CORRECTION_FREQUENCY',
'type': 'ViReal64'
},
1150107: {
'access': 'read-write',
'documentation': {
'description': 'Sets the frequency of the signal generator reference clock. The signal generator uses the reference clock to derive frequencies and sample rates when generating output.'
},
'lv_property': 'Clocks:Reference Clock:Frequency',
'name': 'REF_CLOCK_FREQUENCY',
'type': 'ViReal64'
},
1150108: {
'access': 'read-write',
'documentation': {
'description': 'Controls the trigger mode.'
},
'enum': 'TriggerMode',
'lv_property': 'Triggers:Trigger Mode',
'name': 'TRIGGER_MODE',
'supported_rep_caps': [
'channels'
],
'type': 'ViInt32'
},
1150110: {
'access': 'read-write',
'documentation': {
'description': '\nControls which clock mode is used for the signal generator.\nFor signal generators that support it, this attribute allows switching the sample clock to High-Resolution mode. When in Divide-Down mode, the sample rate can only be set to certain frequences, based on dividing down the update clock. However, in High-Resolution mode, the sample rate may be set to any value.\n'
},
'enum': 'ClockMode',
'lv_property': 'Clocks:Sample Clock:Mode',
'name': 'CLOCK_MODE',
'type': 'ViInt32'
},
1150112: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the Sample clock source. If you specify a divisor with the NIFGEN_ATTR_EXPORTED_SAMPLE_CLOCK_DIVISOR attribute, the Sample clock exported with the NIFGEN_ATTR_EXPORTED_SAMPLE_CLOCK_OUTPUT_TERMINAL attribute is the value of the Sample clock after it is divided-down. For a list of the terminals available on your device, refer to the Device Routes tab in MAX.\nTo change the device configuration, call niFgen_AbortGeneration or wait for the generation to complete.\n',
'note': 'The signal generator must not be in the Generating state when you change this attribute.'
},
'enum': 'SampleClockSource',
'lv_property': 'Clocks:Sample Clock:Source',
'name': 'SAMPLE_CLOCK_SOURCE',
'type': 'ViString'
},
1150113: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the reference clock source used by the signal generator.\nThe signal generator derives the frequencies and sample rates that it uses to generate waveforms from the source you specify. For example, when you set this attribute to ClkIn, the signal generator uses the signal it receives at the CLK IN front panel connector as the Reference clock.\nTo change the device configuration, call niFgen_AbortGeneration or wait for the generation to complete.\n',
'note': 'The signal generator must not be in the Generating state when you change this attribute.'
},
'enum': 'ReferenceClockSource',
'lv_property': 'Clocks:Reference Clock:Source',
'name': 'REFERENCE_CLOCK_SOURCE',
'type': 'ViString'
},
1150208: {
'access': 'read-write',
'documentation': {
'description': 'Sets which frequency list the signal generator produces. Create a frequency list using niFgen_CreateFreqList. niFgen_CreateFreqList returns a handle that you can use to identify the list.'
},
'grpc_enum': 'FrequencyListHandle',
'lv_property': 'Standard Function:Frequency List Mode:Frequency List Handle',
'name': 'FREQ_LIST_HANDLE',
'type': 'ViInt32'
},
1150209: {
'access': 'read only',
'documentation': {
'description': 'Returns the maximum number of frequency lists the signal generator allows.'
},
'lv_property': 'Standard Function:Frequency List Mode:Maximum Number Of Frequency Lists',
'name': 'MAX_NUM_FREQ_LISTS',
'type': 'ViInt32'
},
1150210: {
'access': 'read only',
'documentation': {
'description': 'Returns the minimum number of frequency lists that the signal generator allows.'
},
'lv_property': 'Standard Function:Frequency List Mode:Minimum Frequency List Length',
'name': 'MIN_FREQ_LIST_LENGTH',
'type': 'ViInt32'
},
1150211: {
'access': 'read only',
'documentation': {
'description': 'Returns the maximum number of steps that can be in a frequency list.'
},
'lv_property': 'Standard Function:Frequency List Mode:Maximum Frequency List Length',
'name': 'MAX_FREQ_LIST_LENGTH',
'type': 'ViInt32'
},
1150212: {
'access': 'read only',
'documentation': {
'description': 'Returns the minimum number of steps that can be in a frequency list.'
},
'lv_property': 'Standard Function:Frequency List Mode:Minimum Frequency List Duration',
'name': 'MIN_FREQ_LIST_DURATION',
'type': 'ViReal64'
},
1150213: {
'access': 'read only',
'documentation': {
'description': 'Returns the maximum duration of any one step in the frequency list.'
},
'lv_property': 'Standard Function:Frequency List Mode:Maximum Frequency List Duration',
'name': 'MAX_FREQ_LIST_DURATION',
'type': 'ViReal64'
},
1150214: {
'access': 'read-write',
'documentation': {
'description': 'Returns the quantum of which all durations must be a multiple in a frequency list.'
},
'lv_property': 'Standard Function:Frequency List Mode:Frequency List Duration Quantum',
'name': 'FREQ_LIST_DURATION_QUANTUM',
'type': 'ViReal64'
},
1150215: {
'access': 'read only',
'documentation': {
'description': 'The bus type of the signal generator.'
},
'enum': 'BusType',
'lv_property': 'Instrument:Bus Type',
'name': 'BUS_TYPE',
'type': 'ViInt32'
},
1150218: {
'access': 'read-write',
'documentation': {
'description': 'This attribute only affects the device when NIFGEN_ATTR_DIGITAL_FILTER_ENABLED is set to VI_TRUE. If you do not set this attribute directly, NI-FGEN automatically selects the maximum interpolation factor allowed for the current sample rate. Valid values are 2, 4, and 8.'
},
'lv_property': 'Output:Filters:Digital Filter Interpolation Factor',
'name': 'DIGITAL_FILTER_INTERPOLATION_FACTOR',
'type': 'ViReal64'
},
1150219: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the factor by which to divide the Sample clock, also known as the Update clock, before it is exported. To export the Sample clock, use the niFgen_ExportSignal function or the NIFGEN_ATTR_EXPORTED_SAMPLE_CLOCK_OUTPUT_TERMINAL attribute.'
},
'lv_property': 'Clocks:Sample Clock:Exported Sample Clock Divisor',
'name': 'EXPORTED_SAMPLE_CLOCK_DIVISOR',
'type': 'ViInt32'
},
1150220: {
'access': 'read-write',
'documentation': {
'description': 'This channel-based attribute specifies the load impedance connected to the analog output of the channel. If you set this attribute to NIFGEN_VAL_MATCHED_LOAD_IMPEDANCE (-1.0), NI-FGEN assumes that the load impedance matches the output impedance. NI-FGEN compensates to give the desired peak-to-peak voltage amplitude or arbitrary gain (relative to 1 V).'
},
'grpc_enum': 'LoadImpedance',
'lv_property': 'Output:Load Impedance',
'name': 'LOAD_IMPEDANCE',
'type': 'ViReal64'
},
1150222: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the analog signal path that should be used. The main path allows you to configure gain, offset, analog filter status, output impedance, and output enable. The main path has two amplifier options, high- and low-gain.\nThe direct path presents a much smaller gain range, and you cannot adjust offset or the filter status. The direct path also provides a smaller output range but also lower distortion. NI-FGEN normally chooses the amplifier based on the user-specified gain.\n'
},
'enum': 'AnalogPath',
'lv_property': 'Output:Analog Path',
'name': 'ANALOG_PATH',
'type': 'ViInt32'
},
1150230: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the factor by which to divide the sample clock timebase (board clock) before it is exported. To export the Sample clock timebase, use the niFgen_ExportSignal function or the NIFGEN_ATTR_EXPORTED_SAMPLE_CLOCK_TIMEBASE_OUTPUT_TERMINAL attribute.'
},
'lv_property': 'Clocks:Sample Clock Timebase:Exported Sample Clock Timebase Divisor',
'name': 'EXPORTED_SAMPLE_CLOCK_TIMEBASE_DIVISOR',
'type': 'ViInt32'
},
1150233: {
'access': 'read-write',
'documentation': {
'description': 'Binary value of the external clock delay.'
},
'lv_property': 'Clocks:Advanced:External Clock Delay Binary Value',
'name': 'EXTERNAL_CLOCK_DELAY_BINARY_VALUE',
'type': 'ViInt32'
},
1150234: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the mask to apply to the analog output. The masked data is replaced with the data in NIFGEN_ATTR_ANALOG_STATIC_VALUE.'
},
'lv_property': 'Output:Data Mask:Analog Data Mask',
'name': 'ANALOG_DATA_MASK',
'type': 'ViInt32'
},
1150235: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the static value that replaces data masked by NIFGEN_ATTR_ANALOG_DATA_MASK.'
},
'lv_property': 'Output:Data Mask:Analog Static Value',
'name': 'ANALOG_STATIC_VALUE',
'type': 'ViInt32'
},
1150236: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the mask to apply to the output on the digital connector. The masked data is replaced with the data in NIFGEN_ATTR_DIGITAL_STATIC_VALUE.'
},
'lv_property': 'Output:Data Mask:Digital Data Mask',
'name': 'DIGITAL_DATA_MASK',
'type': 'ViInt32'
},
1150237: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the static value that replaces data masked by NIFGEN_ATTR_DIGITAL_DATA_MASK.'
},
'lv_property': 'Output:Data Mask:Digital Static Value',
'name': 'DIGITAL_STATIC_VALUE',
'type': 'ViInt32'
},
1150238: {
'access': 'read only',
'documentation': {
'description': '\nThis attribute contains the number of samples used in the standard function waveform buffer. This attribute is only valid on devices that implement standard function mode in software, and is read-only for all other devices.\nimplementation of Standard Function Mode on your device.\n',
'note': 'Refer to the Standard Function Mode topic for more information on the'
},
'lv_property': 'Standard Function:Standard Function Mode:Buffer Size',
'name': 'FUNC_BUFFER_SIZE',
'type': 'ViInt32'
},
1150239: {
'access': 'read-write',
'documentation': {
'description': '\nThis attribute sets the maximum number of samples that can be used in the standard function waveform buffer. Increasing this value may increase the quality of the waveform. This attribute is only valid on devices that implement standard function mode in software, and is read-only for all other devices.\nimplementation of Standard Function Mode on your device.\n',
'note': 'Refer to the Standard Function Mode topic for more information on the'
},
'lv_property': 'Standard Function:Standard Function Mode:Maximum Buffer Size',
'name': 'FUNC_MAX_BUFFER_SIZE',
'type': 'ViInt32'
},
1150240: {
'access': 'read-write',
'documentation': {
'description': 'The number of samples at a time to read from the file and download to onboard memory. Used in conjunction with the Create From File and Write From File functions.'
},
'lv_property': 'Arbitrary Waveform:Data Transfer:File Transfer Block Size',
'name': 'FILE_TRANSFER_BLOCK_SIZE',
'type': 'ViInt32'
},
1150241: {
'access': 'read-write',
'documentation': {
'description': 'The number of samples at a time to download to onboard memory. Useful when the total data to be transferred to onboard memory is large.'
},
'lv_property': 'Arbitrary Waveform:Data Transfer:Data Transfer Block Size',
'name': 'DATA_TRANSFER_BLOCK_SIZE',
'type': 'ViInt32'
},
1150242: {
'access': 'read only',
'documentation': {
'description': 'The total amount of memory, in bytes, on the signal generator.'
},
'lv_property': 'Instrument:Memory Size',
'name': 'MEMORY_SIZE',
'type': 'ViInt32'
},
1150243: {
'access': 'read only',
'documentation': {
'description': "\nThe signal generator's serial number.\n"
},
'lv_property': 'Instrument:Serial Number',
'name': 'SERIAL_NUMBER',
'type': 'ViString'
},
1150254: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies a factor by which the signal generator digitally multiplies generated data before converting it to an analog signal in the DAC. For a digital gain greater than 1.0, the product of digital gain times the generated data must be inside the range plus or minus 1.0 (assuming floating point data). If the product exceeds these limits, the signal generator clips the output signal, and an error results.\nSome signal generators support both digital gain and an analog gain (analog gain is specified with the NIFGEN_ATTR_FUNC_AMPLITUDE attribute or the NIFGEN_ATTR_ARB_GAIN attribute). Digital gain can be changed during generation without the glitches that may occur when changing analog gains, due to relay switching. However, the DAC output resolution is a function of analog gain, so only analog gain makes full use of the resolution of the DAC.\n'
},
'lv_property': 'Output:Digital Gain',
'name': 'DIGITAL_GAIN',
'type': 'ViReal64'
},
1150270: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies which script the generator produces. To configure the generator to run a particular script, set this attribute to the name of the script. Use niFgen_WriteScript to create multiple scripts. Use this attribute when NIFGEN_ATTR_OUTPUT_MODE is set to NIFGEN_VAL_OUTPUT_SCRIPT.\n',
'note': 'The signal generator must not be in the Generating state when you change this attribute. To change the device configuration, call niFgen_AbortGeneration or wait for the generation to complete.'
},
'lv_property': 'Arbitrary Waveform:Script Mode:Script to Generate',
'name': 'SCRIPT_TO_GENERATE',
'type': 'ViString'
},
1150271: {
'access': 'read only',
'documentation': {
'description': 'Returns the number of markers supported by the device. Use this attribute when NIFGEN_ATTR_OUTPUT_MODE is set to NIFGEN_VAL_OUTPUT_SCRIPT.'
},
'lv_property': 'Instrument:Marker Events Count',
'name': 'MARKER_EVENTS_COUNT',
'type': 'ViInt32'
},
1150272: {
'access': 'read only',
'documentation': {
'description': 'Specifies the number of Script triggers supported by the device. Use this attribute when NIFGEN_ATTR_OUTPUT_MODE is set to NIFGEN_VAL_OUTPUT_SCRIPT.'
},
'lv_property': 'Instrument:Script Triggers Count',
'name': 'SCRIPT_TRIGGERS_COUNT',
'type': 'ViInt32'
},
1150273: {
'access': 'read only',
'documentation': {
'description': 'Returns the number of Data Marker Events supported by the device.'
},
'lv_property': 'Instrument:Data Marker Events Count',
'name': 'DATA_MARKER_EVENTS_COUNT',
'type': 'ViInt32'
},
1150280: {
'access': 'read-write',
'documentation': {
'description': 'Specifies whether you want the Start trigger to be a Digital Edge, or Software trigger. You can also choose None as the value for this attribute.'
},
'enum': 'StartTriggerType',
'lv_property': 'Triggers:Start:Trigger Type',
'name': 'START_TRIGGER_TYPE',
'type': 'ViInt32'
},
1150281: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the source terminal for the Start trigger. This attribute is used only when NIFGEN_ATTR_START_TRIGGER_TYPE is set to Digital Edge.'
},
'lv_property': 'Triggers:Start:Digital Edge:Source',
'name': 'DIGITAL_EDGE_START_TRIGGER_SOURCE',
'type': 'ViString'
},
1150282: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the active edge for the Start trigger. This attribute is used only when NIFGEN_ATTR_START_TRIGGER_TYPE is set to Digital Edge.'
},
'enum': 'StartTriggerDigitalEdgeEdge',
'lv_property': 'Triggers:Start:Digital Edge:Edge',
'name': 'DIGITAL_EDGE_START_TRIGGER_EDGE',
'type': 'ViInt32'
},
1150283: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the destination terminal for exporting the Start trigger.'
},
'lv_property': 'Triggers:Start:Output Terminal',
'name': 'EXPORTED_START_TRIGGER_OUTPUT_TERMINAL',
'type': 'ViString'
},
1150290: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the Script trigger type. Depending upon the value of this attribute, additional attributes may need to be configured to fully configure the trigger.'
},
'enum': 'ScriptTriggerType',
'lv_property': 'Triggers:Script:Trigger Type',
'name': 'SCRIPT_TRIGGER_TYPE',
'supported_rep_caps': [
'script_triggers'
],
'type': 'ViInt32'
},
1150291: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the source terminal for the Script trigger. This attribute is used when NIFGEN_ATTR_SCRIPT_TRIGGER_TYPE is set to Digital Edge.'
},
'lv_property': 'Triggers:Script:Digital Edge:Source',
'name': 'DIGITAL_EDGE_SCRIPT_TRIGGER_SOURCE',
'supported_rep_caps': [
'script_triggers'
],
'type': 'ViString'
},
1150292: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the active edge for the Script trigger. This attribute is used when NIFGEN_ATTR_SCRIPT_TRIGGER_TYPE is set to Digital Edge.'
},
'enum': 'ScriptTriggerDigitalEdgeEdge',
'lv_property': 'Triggers:Script:Digital Edge:Edge',
'name': 'DIGITAL_EDGE_SCRIPT_TRIGGER_EDGE',
'supported_rep_caps': [
'script_triggers'
],
'type': 'ViInt32'
},
1150295: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the output terminal for the exported Script trigger.\nSetting this attribute to an empty string means that when you commit the session, the signal is removed from that terminal and, if possible, the terminal is tristated.\n'
},
'lv_property': 'Triggers:Script:Output Terminal',
'name': 'EXPORTED_SCRIPT_TRIGGER_OUTPUT_TERMINAL',
'supported_rep_caps': [
'script_triggers'
],
'type': 'ViString'
},
1150310: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the destination terminal for the Ready for Start Event.'
},
'lv_property': 'Events:Ready For Start:Output Terminal',
'name': 'READY_FOR_START_EVENT_OUTPUT_TERMINAL',
'type': 'ViString'
},
1150312: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the destination terminal for the Marker Event.'
},
'lv_property': 'Events:Marker:Output Terminal',
'name': 'MARKER_EVENT_OUTPUT_TERMINAL',
'supported_rep_caps': [
'markers'
],
'type': 'ViString'
},
1150314: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the destination terminal for the Started Event.'
},
'lv_property': 'Events:Started:Output Terminal',
'name': 'STARTED_EVENT_OUTPUT_TERMINAL',
'type': 'ViString'
},
1150315: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the destination terminal for the Done Event.'
},
'lv_property': 'Events:Done:Output Terminal',
'name': 'DONE_EVENT_OUTPUT_TERMINAL',
'type': 'ViString'
},
1150320: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the terminal to which to export the Sample Clock.'
},
'lv_property': 'Clocks:Sample Clock:Export Output Terminal',
'name': 'EXPORTED_SAMPLE_CLOCK_OUTPUT_TERMINAL',
'type': 'ViString'
},
1150321: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the terminal to which to export the Reference Clock.'
},
'lv_property': 'Clocks:Reference Clock:Export Output Terminal',
'name': 'EXPORTED_REFERENCE_CLOCK_OUTPUT_TERMINAL',
'type': 'ViString'
},
1150322: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the terminal to which to export the Onboard Reference Clock.'
},
'lv_property': 'Clocks:Reference Clock:Onboard Reference Clock:Export Output Terminal',
'name': 'EXPORTED_ONBOARD_REFERENCE_CLOCK_OUTPUT_TERMINAL',
'type': 'ViString'
},
1150323: {
'access': 'read-write',
'documentation': {
'description': '\nWhen VI_TRUE, the signal generator applies a flatness correction factor to the generated sine wave in order to ensure the same output power level at all frequencies.\nThis attribute should be set to VI_FALSE when performing Flatness Calibration.\n'
},
'lv_property': 'Output:Filters:Flatness Correction Enabled',
'name': 'FLATNESS_CORRECTION_ENABLED',
'type': 'ViBoolean'
},
1150324: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the waveform handle of the waveform used to continuously stream data during generation. This attribute defaults to -1 when no streaming waveform is specified.\nUsed in conjunction with NIFGEN_ATTR_STREAMING_SPACE_AVAILABLE_IN_WAVEFORM.\n'
},
'lv_property': 'Arbitrary Waveform:Data Transfer:Streaming:Streaming Waveform Handle',
'name': 'STREAMING_WAVEFORM_HANDLE',
'type': 'ViInt32'
},
1150325: {
'access': 'read only',
'documentation': {
'description': '\nIndicates the space available (in samples) in the streaming waveform for writing new data. During generation, this available space may be in multiple locations with, for example, part of the available space at the end of the streaming waveform and the rest at the beginning. In this situation, writing a block of waveform data the size of the total space available in the streaming waveform causes NI-FGEN to return an error, as NI-FGEN will not wrap the data from the end of the waveform to the beginning and cannot write data past the end of the waveform buffer.\nTo avoid writing data past the end of the waveform, write new data to the waveform in a fixed size that is an integer divisor of the total size of the streaming waveform.\nUsed in conjunction with the NIFGEN_ATTR_STREAMING_WAVEFORM_HANDLE or NIFGEN_ATTR_STREAMING_WAVEFORM_NAME attributes.\n'
},
'lv_property': 'Arbitrary Waveform:Data Transfer:Streaming:Space Available in Streaming Waveform',
'name': 'STREAMING_SPACE_AVAILABLE_IN_WAVEFORM',
'type': 'ViInt32'
},
1150326: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the name of the waveform used to continuously stream data during generation. This attribute defaults to // when no streaming waveform is specified.\nUse in conjunction with NIFGEN_ATTR_STREAMING_SPACE_AVAILABLE_IN_WAVEFORM.\n'
},
'lv_property': 'Arbitrary Waveform:Data Transfer:Streaming:Streaming Waveform Name',
'name': 'STREAMING_WAVEFORM_NAME',
'type': 'ViString'
},
1150327: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the position for a marker to be asserted in the arbitrary waveform. This attribute defaults to -1 when no marker position is specified. Use this attribute when NIFGEN_ATTR_OUTPUT_MODE is set to NIFGEN_VAL_OUTPUT_ARB.\nUse niFgen_ExportSignal to export the marker signal.\n'
},
'lv_property': 'Arbitrary Waveform:Arbitrary Waveform Mode:Marker Position',
'name': 'ARB_MARKER_POSITION',
'type': 'ViInt32'
},
1150328: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies number of times to repeat the arbitrary waveform when the triggerMode parameter of nifgen_ConfigureTriggerMode is set to NIFGEN_VAL_SINGLE or NIFGEN_VAL_STEPPED. This attribute is ignored if the triggerMode parameter is set to NIFGEN_VAL_CONTINUOUS or NIFGEN_VAL_BURST. Use this attribute when NIFGEN_ATTR_OUTPUT_MODE is set to NIFGEN_VAL_OUTPUT_ARB.\nWhen used during streaming, this attribute specifies the number of times to repeat the streaming waveform (the onboard memory allocated for streaming). For more information about streaming, refer to the Streaming topic.\n'
},
'lv_property': 'Arbitrary Waveform:Arbitrary Waveform Mode:Repeat Count',
'name': 'ARB_REPEAT_COUNT',
'type': 'ViInt32'
},
1150329: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the terminal to which to export the Sample clock timebase. If you specify a divisor with the NIFGEN_ATTR_EXPORTED_SAMPLE_CLOCK_TIMEBASE_DIVISOR attribute, the Sample clock exported with the NIFGEN_ATTR_EXPORTED_SAMPLE_CLOCK_TIMEBASE_OUTPUT_TERMINAL attribute is the value of the Sample clock timebase after it is divided-down. For a list of the terminals available on your device, refer to the Device Routes tab in MAX.\nTo change the device configuration, call niFgen_AbortGeneration or wait for the generation to complete.\n',
'note': 'The signal generator must not be in the Generating state when you change this attribute.'
},
'lv_property': 'Clocks:Sample Clock Timebase:Export Output Terminal',
'name': 'EXPORTED_SAMPLE_CLOCK_TIMEBASE_OUTPUT_TERMINAL',
'type': 'ViString'
},
1150333: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the pulse width units for the Started Event.'
},
'enum': 'EventPulseWidthUnits',
'lv_property': 'Events:Started:Pulse:Width Units',
'name': 'STARTED_EVENT_PULSE_WIDTH_UNITS',
'type': 'ViInt32'
},
1150334: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the pulse width units for the Done Event.'
},
'enum': 'EventPulseWidthUnits',
'lv_property': 'Events:Done:Pulse:Width Units',
'name': 'DONE_EVENT_PULSE_WIDTH_UNITS',
'type': 'ViInt32'
},
1150335: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the pulse width for the Started Event.'
},
'lv_property': 'Events:Started:Pulse:Width Value',
'name': 'STARTED_EVENT_PULSE_WIDTH',
'type': 'ViReal64'
},
1150336: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the pulse width for the Done Event.'
},
'lv_property': 'Events:Done:Pulse:Width Value',
'name': 'DONE_EVENT_PULSE_WIDTH',
'type': 'ViReal64'
},
1150337: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the bit number to assign to the Data Marker Event.'
},
'lv_property': 'Events:Data Marker:Data Bit Number',
'name': 'DATA_MARKER_EVENT_DATA_BIT_NUMBER',
'supported_rep_caps': [
'data_markers'
],
'type': 'ViInt32'
},
1150338: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the output polarity of the Data marker event.'
},
'enum': 'DataMarkerEventLevelPolarity',
'lv_property': 'Events:Data Marker:Level:Active Level',
'name': 'DATA_MARKER_EVENT_LEVEL_POLARITY',
'supported_rep_caps': [
'data_markers'
],
'type': 'ViInt32'
},
1150339: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the destination terminal for the Data Marker Event.'
},
'lv_property': 'Events:Data Marker:Output Terminal',
'name': 'DATA_MARKER_EVENT_OUTPUT_TERMINAL',
'supported_rep_caps': [
'data_markers'
],
'type': 'ViString'
},
1150340: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the pulse width for the Marker Event.'
},
'lv_property': 'Events:Marker:Pulse:Width Value',
'name': 'MARKER_EVENT_PULSE_WIDTH',
'supported_rep_caps': [
'markers'
],
'type': 'ViReal64'
},
1150341: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the pulse width units for the Marker Event.'
},
'enum': 'EventPulseWidthUnits',
'lv_property': 'Events:Marker:Pulse:Width Units',
'name': 'MARKER_EVENT_PULSE_WIDTH_UNITS',
'supported_rep_caps': [
'markers'
],
'type': 'ViInt32'
},
1150344: {
'access': 'read only',
'documentation': {
'description': 'Returns a bit field of the live status of all Marker Events.'
},
'lv_property': 'Events:Marker:Advanced:All Marker Events Live Status',
'name': 'ALL_MARKER_EVENTS_LIVE_STATUS',
'type': 'ViInt32'
},
1150349: {
'access': 'read-write',
'documentation': {
'description': 'Returns a bit field of the latched status of all Marker Events. Write 0 to this attribute to clear the latched status of all Marker Events.'
},
'lv_property': 'Events:Marker:Advanced:All Marker Events Latched Status',
'name': 'ALL_MARKER_EVENTS_LATCHED_STATUS',
'type': 'ViInt32'
},
1150365: {
'access': 'read-write',
'documentation': {
'description': 'Specifies whether gain and offset values will be analyzed based on single-ended or differential operation.'
},
'enum': 'TerminalConfiguration',
'lv_property': 'Output:Terminal Configuration',
'name': 'TERMINAL_CONFIGURATION',
'supported_rep_caps': [
'channels'
],
'type': 'ViInt32'
},
1150366: {
'access': 'read-write',
'documentation': {
'description': 'Specifies, in volts, the value the signal generator adds to or subtracts from the arbitrary waveform data. This attribute applies only when you set the NIFGEN_ATTR_TERMINAL_CONFIGURATION attribute to NIFGEN_VAL_DIFFERENTIAL. Common mode offset is applied to the signals generated at each differential output terminal.'
},
'lv_property': 'Output:Common Mode Offset',
'name': 'COMMON_MODE_OFFSET',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150367: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the Sample Clock Timebase source.\nTo change the device configuration, call the niFgen_AbortGeneration function or wait for the generation to complete.\n',
'note': 'The signal generator must not be in the Generating state when you change this attribute.'
},
'enum': 'SampleClockTimebaseSource',
'lv_property': 'Clocks:Sample Clock Timebase:Source',
'name': 'SAMPLE_CLOCK_TIMEBASE_SOURCE',
'type': 'ViString'
},
1150368: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the Sample clock timebase rate. This attribute applies only to external Sample clock timebases.\nTo change the device configuration, call niFgen_AbortGeneration or wait for the generation to complete.\n',
'note': 'The signal generator must not be in the Generating state when you change this attribute.'
},
'lv_property': 'Clocks:Sample Clock Timebase:Rate',
'name': 'SAMPLE_CLOCK_TIMEBASE_RATE',
'type': 'ViReal64'
},
1150369: {
'access': 'read-write',
'documentation': {
'description': 'Specifies, in seconds, the delay to apply to the analog output of the channel specified by the channel string. You can use the channel delay to configure the timing relationship between channels on a multichannel device. Values for this attribute can be zero or positive. A value of zero indicates that the channels are aligned. A positive value delays the analog output by the specified number of seconds.'
},
'lv_property': 'Output:Channel Delay',
'name': 'CHANNEL_DELAY',
'supported_rep_caps': [
'channels'
],
'type': 'ViReal64'
},
1150373: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the maximum amount of bus bandwidth (in bytes per second) to use for data transfers. The signal generator limits data transfer speeds on the PCIe bus to the value you specify for this attribute. Set this attribute to optimize bus bandwidth usage for multi-device streaming applications by preventing the signal generator from consuming all of the available bandwidth on a PCI express link when waveforms are being written to the onboard memory of the device.'
},
'lv_property': 'Arbitrary Waveform:Data Transfer:Maximum Bandwidth',
'name': 'DATA_TRANSFER_MAXIMUM_BANDWIDTH',
'type': 'ViReal64'
},
1150374: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the preferred size of the data field in a PCI Express read request packet. In general, the larger the packet size, the more efficiently the device uses the bus. By default, NI signal generators use the largest packet size allowed by the system. However, due to different system implementations, some systems may perform better with smaller packet sizes.\nRecommended values for this attribute are powers of two between 64 and 512.\nIn some cases, the signal generator generates packets smaller than the preferred size you set with this attribute.\nYou cannot change this attribute while the device is generating a waveform. If you want to change the device configuration, call the niFgen_AbortGeneration function or wait for the generation to complete.\n',
'note': '\n:\n'
},
'lv_property': 'Arbitrary Waveform:Data Transfer:Advanced:Preferred Packet Size',
'name': 'DATA_TRANSFER_PREFERRED_PACKET_SIZE',
'type': 'ViInt32'
},
1150375: {
'access': 'read-write',
'documentation': {
'description': '\nSpecifies the maximum number of concurrent PCI Express read requests the signal generator can issue.\nWhen transferring data from computer memory to device onboard memory across the PCI Express bus, the signal generator can issue multiple memory reads at the same time. In general, the larger the number of read requests, the more efficiently the device uses the bus because the multiple read requests keep the data flowing, even in a PCI Express topology that has high latency due to PCI Express switches in the data path. Most NI devices can issue a large number of read requests (typically 8 or 16). By default, this attribute is set to the highest value the signal generator supports.\nIf other devices in your system cannot tolerate long data latencies, it may be helpful to decrease the number of in-flight read requests the NI signal generator issues. This helps to reduce the amount of data the signal generator reads at one time.\n'
},
'lv_property': 'Arbitrary Waveform:Data Transfer:Advanced:Maximum In-Flight Read Requests',
'name': 'DATA_TRANSFER_MAXIMUM_IN_FLIGHT_READS',
'type': 'ViInt32'
},
1150376: {
'access': 'read-write',
'documentation': {
'description': 'Specifies a multiplication factor to use to obtain a desired sample rate from an external Sample clock. The resulting sample rate is equal to this factor multiplied by the external Sample clock rate. You can use this attribute to generate samples at a rate higher than your external clock rate. When using this attribute, you do not need to explicitly set the external clock rate.'
},
'lv_property': 'Clocks:Advanced:External Sample Clock Multiplier',
'name': 'EXTERNAL_SAMPLE_CLOCK_MULTIPLIER',
'type': 'ViReal64'
},
1150377: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the behavior of the output during the Idle state. The output can be configured to hold the last generated voltage before entering the Idle state or jump to the Idle Value.'
},
'enum': 'IdleBehavior',
'lv_property': 'Output:Advanced:Idle Behavior',
'name': 'IDLE_BEHAVIOR',
'type': 'ViInt32'
},
1150378: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the value to generate in the Idle state. The Idle Behavior must be configured to jump to this value.'
},
'lv_property': 'Output:Advanced:Idle Value',
'name': 'IDLE_VALUE',
'type': 'ViInt32'
},
1150379: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the behavior of the output while waiting for a script trigger or during a wait instruction. The output can be configured to hold the last generated voltage before waiting or jump to the Wait Value.'
},
'enum': 'WaitBehavior',
'lv_property': 'Output:Advanced:Wait Behavior',
'name': 'WAIT_BEHAVIOR',
'type': 'ViInt32'
},
1150380: {
'access': 'read-write',
'documentation': {
'description': 'Specifies the value to generate while waiting. The Wait Behavior must be configured to jump to this value.'
},
'lv_property': 'Output:Advanced:Wait Value',
'name': 'WAIT_VALUE',
'type': 'ViInt32'
},
1150390: {
'access': 'read only',
'documentation': {
'description': '\nA string that contains the module revision for the device that you are currently using.\n'
},
'lv_property': 'Instrument:Inherent IVI Attributes:Instrument Identification:Module Revision',
'name': 'MODULE_REVISION',
'type': 'ViString'
},
1150409: {
'access': 'read-write',
'attribute_class': 'AttributeViReal64TimeDeltaSeconds',
'documentation': {
'description': 'Specifies the maximum amount of time allowed to complete a streaming write operation.'
},
'lv_property': 'Arbitrary Waveform:Data Transfer:Streaming:Streaming Write Timeout',
'name': 'STREAMING_WRITE_TIMEOUT',
'type': 'ViReal64',
'type_in_documentation': 'hightime.timedelta, datetime.timedelta, or float in seconds'
},
1150411: {
'access': 'read-write',
'documentation': {
'description': 'Controls the specified auxiliary power pin. Setting this attribute to TRUE energizes the auxiliary power when the session is committed. When this attribute is FALSE, the power pin of the connector outputs no power.'
},
'lv_property': 'Output:Advanced:AUX Power Enabled',
'name': 'AUX_POWER_ENABLED',
'type': 'ViBoolean'
},
1150412: {
'access': 'read only',
'documentation': {
'description': 'Gets the absolute file path to the bitfile loaded on the FPGA.'
},
'lv_property': 'Instrument:FPGA Bitfile Path',
'name': 'FPGA_BITFILE_PATH',
'type': 'ViString'
},
1150413: {
'access': 'read-write',
'documentation': {