Device Node Tree
This chapter contains reference documentation for the settings and
measurement data available on UHFQA Instruments. Whilst
Functional Description LabOne User Interface
describes many of these settings in terms of the features available in
the LabOne User Interface, this chapter describes them on the device
level and provides a hierarchically organized and comprehensive list of
device functionality.
Since these settings and data streams may be written and read using the
LabOne APIs (Application Programming Interfaces) this chapter is of
particular interest to users who would like to perform measurements
programmatically via LabVIEW, Python, MATLAB, .NET or C.
Please see:
Introduction for an introduction of how the
instrument’s settings and measurement data are organized
hierarchically in the Data Server’s so-called "Node Tree".
Reference Node Documentation for a reference list of
the settings and measurement data available on UHFQA Instruments,
organized by branch in the Node Tree.
Introduction
This chapter provides an overview of how an instrument’s configuration
and output is organized by the Data Server.
All communication with an instrument occurs via the Data Server program
the instrument is connected to (see LabOne Software
Architecture
for an overview of LabOne’s software components). Although the
instrument’s settings are stored locally on the device, it is the Data
Server’s task to ensure it maintains the values of the current settings
and makes these settings (and any subscribed data) available to all its
current clients. A client may be the LabOne User Interface or a user’s
own program implemented using one of the LabOne Application Programming
Interfaces, e.g., Python.
The instrument’s settings and data are organized by the Data Server in a
file-system-like hierarchical structure called the node tree. When an
instrument is connected to a Data Server, its device ID becomes a
top-level branch in the Data Server’s node tree. The features of the
instrument are organized as branches underneath the top-level device
branch and the individual instrument settings are leaves of these
branches.
For example, the auxiliary outputs of the instrument with device ID
"dev2006" are located in the tree in the branch:
/dev1000/auxouts/
In turn, each individual auxiliary output channel has its own branch
underneath the "AUXOUTS" branch.
/dev1000/auxouts/0/
/dev1000/auxouts/1/
/dev1000/auxouts/2/
/dev1000/auxouts/3/
Whilst the auxiliary outputs and other channels are labelled on the
instrument’s panels and the User Interface using 1-based indexing, the
Data Server’s node tree uses 0-based indexing. Individual settings (and
data) of an auxiliary output are available as leaves underneath the
corresponding channel’s branch:
/dev1000/auxouts/0/demodselect
/dev1000/auxouts/0/limitlower
/dev1000/auxouts/0/limitupper
/dev1000/auxouts/0/offset
/dev1000/auxouts/0/outputselect
/dev1000/auxouts/0/preoffset
/dev1000/auxouts/0/scale
/dev1000/auxouts/0/value
These are all individual node paths in the node tree; the lowest-level
nodes which represent a single instrument setting or data stream.
Whether the node is an instrument setting or data-stream and which type
of data it contains or provides is well-defined and documented on a
per-node basis in the Reference Node Documentation section in the
relevant instrument-specific user manual. The different properties and
types are explained in Node Properties and Data Types
.
For instrument settings, a Data Server client modifies the node’s value
by specifying the appropriate path and a value to the Data Server as a
(path, value) pair. When an instrument’s setting is changed in the
LabOne User Interface, the path and the value of the node that was
changed are displayed in the Status Bar in the bottom of the Window.
This is described in more detail in Exploring the Node Tree .
Module Parameters
LabOne Core Modules, such as the Sweeper, also use a similar tree-like
structure to organize their parameters. Please note, however, that
module nodes are not visible in the Data Server’s node tree; they are
local to the instance of the module created in a LabOne client and are
not synchronized between clients.
Node Properties and Data Types
A node may have one or more of the following properties:
Read
Data can be read from the node.
Write
Data can be written to the node.
Setting
The node corresponds to a writable instrument configuration. The data of these nodes are persisted in snapshots of the instrument and stored in the LabOne XML settings files.
Streaming
A node with the read attribute that provides instrument data, typically at a user-configured rate. The data is usually a more complex data type, for example demodulator data is returned as ZIDemodSample
. A full list of streaming nodes is available in the Programming Manual in the Chapter Instrument Communication. Their availability depends on the device class (e.g. MF) and the option set installed on the device.
A node may contain data of the following types:
Integer
Integer data.
Double
Double precision floating point data.
String
A string array.
Integer (enumerated)
As for Integer, but the node only allows certain values.
Composite data type
For example, ZIDemodSample
. These custom data types are structures whose fields contain the instrument output, a timestamp and other relevant instrument settings such as the demodulator oscillator frequency. Documentation of custom data types is available in
Exploring the Node Tree
In the LabOne User Interface
A convenient method to learn which node is responsible for a specific
instrument setting is to check the Command Log history in the bottom of
the LabOne User Interface. The command in the Status Bar gets updated
every time a configuration change is made. Figure 1 shows how the equivalent MATLAB
command is displayed after modifying the value of the auxiliary output
1’s offset. The format of the LabOne UI’s command history can be
configured in the Config Tab (MATLAB, Python and .NET are available).
The entire history generated in the current UI session can be viewed by
clicking the "Show Log" button.
Figure 1: When a device’s configuration is modified in the LabOne User Interface, the Status Bar displays the equivalent command to perform the same configuration via a LabOne programming interface. Here, the MATLAB code to modify auxiliary output 1’s offset value is provided. When "Show Log" is clicked the entire configuration history is displayed in a new browser tab.
In a LabOne Programming Interface
A list of nodes (under a specific branch) can be requested from the Data
Server in an API client using the listNodes
command (MATLAB, Python,
.NET) or ziAPIListNodes()
function (C API). Please see each API’s
command reference for more help using the listNodes
command. To obtain
a list of all the nodes that provide data from an instrument at a high
rate, so-called streaming nodes, the streamingonly
flag can be
provided to listNodes
. More information on data streaming and
streaming nodes is available in the LabOne Programming Manual.
The detailed descriptions of nodes that is provided in
Reference Node Documentation is accessible directly in the LabOne MATLAB or Python
programming interfaces using the "help" command. The help
command is
daq.help(path)
in Python and ziDAQ('help', path)
in MATLAB. The
command returns a description of the instrument node including access
properties, data type, units and available options. The "help" command
also handles wildcards to return a detailed description of all nodes
matching the path. An example is provided below.
daq = zhinst . core . ziDAQServer ( 'localhost' , 8004 , 6 )
daq . help ( '/dev2006/auxouts/0/offset' )
# Out:
# /dev1000/auxouts/0/offset#
# Add the specified offset voltage to the signal after scaling. Auxiliary Output
# Value = (Signal+Preoffset)*Scale + Offset
# Properties: Read, Write, Setting
# Type: Double
# Unit: V
Data Server Nodes
The Data Server has nodes in the node tree available under the top-level
/ZI/ branch. These nodes give information about the version and state of
the Data Server the client is connected to. For example, the nodes:
/ZI/ABOUT/VERSION
/ZI/ABOUT/REVISION
are read-only nodes that contain information about the release version
and revision of the Data Server. The nodes under the /ZI/DEVICES/ list
which devices are connected, discoverable and visible to the Data
Server.
The nodes:
/ZI/CONFIG/OPEN
/ZI/CONFIG/PORT
are settings nodes that can be used to configure which port the Data
Server listens to for incoming client connections and whether it may
accept connections from clients on hosts other than the localhost.
Nodes that are of particular use to programmers are:
/ZI/DEBUG/LOGPATH - the location of the Data Server’s log in the PC’s
file system,
/ZI/DEBUG/LEVEL - the current log-level of the Data Server
(configurable; has the Write attribute),
/ZI/DEBUG/LOG - the last Data Server log entries as a string array.
The Global nodes of the LabOne Data Server are listed in the Instrument Communication
chapter of the LabOne Programming Manual
Reference Node Documentation
This section describes all the nodes in the data server’s node tree organized by branch.
AUXINS
/dev..../auxins/n/averaging
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Defines the number of samples on the input to average as a power of two. Possible values are in the range [0, 16]. A value of 0 corresponds to the sampling rate of the auxiliary input's ADC.
/dev..../auxins/n/sample
Properties:
Read, Stream
Type:
ZIAuxInSample
Unit:
V
Voltage measured at the Auxiliary Input after averaging. The data rate depends on the averaging value. Note, if the instrument has demodulator functionality, the auxiliary input values are available as fields in a demodulator sample and are aligned by timestamp with the demodulator output.
/dev..../auxins/n/values/n
Properties:
Read
Type:
Double
Unit:
V
Voltage measured at the Auxiliary Input after averaging. The value of this node is updated at a low rate (50 Hz); the streaming node auxins/n/sample is updated at a high rate defined by the averaging.
AUXOUTS
/dev..../auxouts/n/demodselect
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Select the channel number of the selected signal source.
/dev..../auxouts/n/limitlower
Properties:
Read, Write, Setting
Type:
Double
Unit:
V
Lower limit for the signal at the Auxiliary Output. A smaller value will be clipped.
/dev..../auxouts/n/limitupper
Properties:
Read, Write, Setting
Type:
Double
Unit:
V
Upper limit for the signal at the Auxiliary Output. A larger value will be clipped.
/dev..../auxouts/n/offset
Properties:
Read, Write, Setting
Type:
Double
Unit:
V
Add the specified offset voltage to the signal after scaling. Auxiliary Output Value = (Signal+Preoffset)*Scale + Offset
/dev..../auxouts/n/outputselect
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Select the signal source to be represented on the Auxiliary Output.
-1
"manual": Select Manual as the output option.
0
"demod_x": Select Demod X as the output option.
1
"demod_y": Select Demod Y as the output option.
2
"demod_r": Select Demod R as the output option.
3
"demod_theta": Select Demod Theta as the output option.
4
"awg": Select one of the AWG Outputs for auxiliary output when running the AWG in four-channel mode. The AWG option needs to be installed.
5
"pid": Select PID Out as the output option.
6
"boxcar": Select Boxcar as the output option.
7
"au_cartesian": Select AU Cartesian as the output option.
8
"au_polar": Select AU Polar as the output option.
9
"pid_shift": Select PID Shift as the output option.
10
"pid_error": Select PID Error as the output option.
12
"pulse_counter": Select Pulse Counter as the output option.
/dev..../auxouts/n/preoffset
Properties:
Read, Write, Setting
Type:
Double
Unit:
Dependent
Add a pre-offset to the signal before scaling is applied. Auxiliary Output Value = (Signal+Preoffset)*Scale + Offset
/dev..../auxouts/n/scale
Properties:
Read, Write, Setting
Type:
Double
Unit:
None
Multiplication factor to scale the signal. Auxiliary Output Value = (Signal+Preoffset)*Scale + Offset
/dev..../auxouts/n/value
Properties:
Read
Type:
Double
Unit:
V
Voltage present on the Auxiliary Output. Auxiliary Output Value = (Signal+Preoffset)*Scale + Offset
AWGS
/dev..../awgs/n/auxtriggers/n/channel
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Selects the digital trigger source signal.
0
"trigin0", "trigger_input0": Trigger In 1
1
"trigin1", "trigger_input1": Trigger In 2
2
"trigin2", "trigger_input2": Trigger In 3
3
"trigin3", "trigger_input3": Trigger In 4
4
"trigout0", "trigger_output0": Trigger Out 1
5
"trigout1", "trigger_output1": Trigger Out 2
6
"trigout2", "trigger_output2": Trigger Out 3
7
"trigout3", "trigger_output3": Trigger Out 4
/dev..../awgs/n/auxtriggers/n/slope
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Select the signal edge that should activate the trigger. The trigger will be level sensitive when the Level option is selected.
0
"level_sensitive": Level sensitive trigger
1
"rising_edge": Rising edge trigger
2
"falling_edge": Falling edge trigger
3
"both_edges": Rising or falling edge trigger
/dev..../awgs/n/auxtriggers/n/state
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
State of the Auxiliary Trigger: No trigger detected/trigger detected.
/dev..../awgs/n/dio/data
Properties:
Read
Type:
ZIVectorData
Unit:
None
A vector of 32-bit integers representing the values on the DIO interface.
/dev..../awgs/n/dio/delay/index
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Index of the bit on the DIO interface for which the delay should be changed.
/dev..../awgs/n/dio/delay/value
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Corresponding delay value to apply to the given bit of the DIO interface in units of 450 MHz clock cycles. Valid values are 0 to 3.
/dev..../awgs/n/dio/strobe/index
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Select the DIO bit to use as the STROBE signal.
/dev..../awgs/n/dio/strobe/slope
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Select the signal edge of the STROBE signal for use in timing alignment.
0
"off": Off
1
"rising_edge": Rising edge trigger
2
"falling_edge": Falling edge trigger
3
"both_edges": Rising or falling edge trigger
/dev..../awgs/n/dio/valid/index
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Select the DIO bit to use as the VALID signal to indicate a valid input is available.
/dev..../awgs/n/dio/valid/polarity
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Polarity of the VALID bit that indicates that a valid input is available.
0
"none": None: VALID bit is ignored.
1
"low": Low: VALID bit must be logical zero.
2
"high": High: VALID bit must be logical high.
3
"both": Both: VALID bit may be logical high or zero.
/dev..../awgs/n/elf/checksum
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Checksum of the uploaded ELF file.
/dev..../awgs/n/elf/data
Properties:
Write
Type:
ZIVectorData
Unit:
None
Accepts the data of the sequencer ELF file.
/dev..../awgs/n/elf/length
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Length of the compiled ELF file.
/dev..../awgs/n/elf/memoryusage
Properties:
Read
Type:
Double
Unit:
None
Size of the uploaded ELF file relative to the size of the main memory.
/dev..../awgs/n/elf/name
Properties:
Read
Type:
ZIVectorData
Unit:
None
The name of the uploaded ELF file.
/dev..../awgs/n/elf/progress
Properties:
Read
Type:
Double
Unit:
%
The percentage of the sequencer program already uploaded to the device.
/dev..../awgs/n/enable
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Activates the AWG.
/dev..../awgs/n/outputs/n/amplitude
Properties:
Read, Write, Setting
Type:
Double
Unit:
None
Amplitude in units of full scale of the given AWG Output. The full scale corresponds to the Range voltage setting of the Signal Outputs.
/dev..../awgs/n/outputs/n/enables/n
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Indicates the routing of the AWG signal (k index) to the wave output or to the digital mixer input (m index).
/dev..../awgs/n/outputs/n/mode
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Select between plain mode, amplitude modulation, and advanced mode.
0
"plain": Plain: AWG Output goes directly to Signal Output.
1
"modulation": Modulation: AWG Output 1 (2) is multiplied with oscillator signal of demodulator 4 (8).
2
"advanced": Advanced: Output of AWG channel 1 (2) modulates demodulators 1-4 (5-8) with independent envelopes.
/dev..../awgs/n/ready
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
AWG has a compiled wave form and is ready to be enabled.
/dev..../awgs/n/rtlogger/clear
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Clears the logger data.
/dev..../awgs/n/rtlogger/data
Properties:
Read
Type:
ZIVectorData
Unit:
None
Vector node with the logged events.
/dev..../awgs/n/rtlogger/enable
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Activates the Real-time Logger.
/dev..../awgs/n/rtlogger/mode
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Selects the operation mode.
0
"normal": Normal: Logger starts with the AWG and overwrites old values as soon as the memory limit of 1024 entries is reached.
1
"timestamp": Timestamp-triggered: Logger starts with the AWG, waits for the first valid trigger, and only starts recording data after the time specified by the starttimestamp. Recording stops as soon as the memory limit of 1024 entries is reached.
/dev..../awgs/n/rtlogger/starttimestamp
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Timestamp at which to start logging for timestamp-triggered mode.
/dev..../awgs/n/rtlogger/status
Properties:
Read
Type:
Integer (enumerated)
Unit:
None
Operation state.
0
"idle": Idle: Logger is not running.
1
"normal": Normal: Logger is running in normal mode.
2
"ts_wait": Wait for timestamp: Logger is in timestamp-triggered mode and waits for start timestamp.
3
"ts_active": Active: Logger is in timestamp-triggered mode and logging.
4
"ts_full": Log Full: Logger is in timestamp-triggered mode and has stopped logging because log is full.
/dev..../awgs/n/rtlogger/timebase
Properties:
Read
Type:
Double
Unit:
s
Minimal time difference between two timestamps. The value matches the AWG sequencer execution rate.
/dev..../awgs/n/sequencer/assembly
Properties:
Read
Type:
ZIVectorData
Unit:
None
Displays the current sequence program in compiled form. Every line corresponds to one hardware instruction.
/dev..../awgs/n/sequencer/continue
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Reserved for future use.
/dev..../awgs/n/sequencer/memoryusage
Properties:
Read
Type:
Double
Unit:
None
Size of the current Sequencer program relative to the available instruction memory of 1 kInstructions (1'024 instructions).
/dev..../awgs/n/sequencer/next
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Reserved for future use.
/dev..../awgs/n/sequencer/pc
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Current position in the list of sequence instructions during execution.
/dev..../awgs/n/sequencer/program
Properties:
Read
Type:
ZIVectorData
Unit:
None
Displays the source code of the current sequence program.
/dev..../awgs/n/sequencer/status
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Status of the sequencer on the instrument. Bit 0: sequencer is running; Bit 1: reserved; Bit 2: sequencer is waiting for a trigger to arrive; Bit 3: AWG has detected an error; Bit 4: sequencer is waiting for synchronization with other channels.
/dev..../awgs/n/single
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Puts the AWG into single shot mode.
/dev..../awgs/n/sweep/awgtrigs/n
Properties:
Read, Write
Type:
Double
Unit:
Dependent
Node used by the sweeper module for fast index sweeps. When selected as sweep grid the sweeper module will switch into a fast index based scan mode. This mode can be up to 1000 times faster than conventional node sweeps. The sequencer program must support this functionality. See section 'AWG Index Sweep' of the UHF user manual for more information.
/dev..../awgs/n/time
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
AWG sampling rate. The numeric values are rounded for display purposes. The exact values are equal to the base sampling rate (1.8 GHz) divided by 2^n, where n is the node value. This value is used by default and can be overridden in the Sequence program.
0
"1.80_GHz": 1.80 GHz
1
"900_MHz": 900 MHz
2
"450_MHz": 450 MHz
3
"225_MHz": 225 MHz
4
"113_MHz": 112.5 MHz
5
"56.3_MHz": 56.25 MHz
6
"28.1_MHz": 28.12 MHz
7
"14.1_MHz": 14.06 MHz
8
"7.03_MHz": 7.03 MHz
9
"3.52_MHz": 3.52 MHz
10
"1.76M_Hz": 1.76 MHz
11
"878.91_kHz": 878.91 kHz
12
"439_kHz": 439.45 kHz
13
"220_kHz": 219.73 kHz
/dev..../awgs/n/triggers/n/channel
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Selects the signal source for the analogue trigger.
0
"sigin0", "signal_input0": Signal Input 1
1
"sigin1", "signal_input1": Signal Input 2
2
"trigin0", "trigger_input0": Trigger Input 1
3
"trigin1", "trigger_input1": Trigger Input 2
4
"auxout0", "auxiliary_output0": Aux Output 1. Requires an installed digitizer (DIG) option.
5
"auxout1", "auxiliary_output1": Aux Output 2. Requires an installed digitizer (DIG) option.
6
"auxout2", "auxiliary_output2": Aux Output 3. Requires an installed digitizer (DIG) option.
7
"auxout3", "auxiliary_output3": Aux Output 4. Requires an installed digitizer (DIG) option.
8
"auxin0", "auxiliary_input0": Aux Input 1
9
"auxin1", "auxiliary_input1": Aux Input 2
10
"demod3": Osc φ Demod 4
11
"demod7": Osc φ Demod 8
16
"demod0_x": Demod 1 X. Requires an installed digitizer (DIG) option.
17
"demod1_x": Demod 2 X. Requires an installed digitizer (DIG) option.
18
"demod2_x": Demod 3 X. Requires an installed digitizer (DIG) option.
19
"demod3_x": Demod 4 X. Requires an installed digitizer (DIG) option.
20
"demod4_x": Demod 5 X. Requires an installed digitizer (DIG) option.
21
"demod5_x": Demod 6 X. Requires an installed digitizer (DIG) option.
22
"demod6_x": Demod 7 X. Requires an installed digitizer (DIG) option.
23
"demod7_x": Demod 8 X. Requires an installed digitizer (DIG) option.
32
"demod0_y": Demod 1 Y. Requires an installed digitizer (DIG) option.
33
"demod1_y": Demod 2 Y. Requires an installed digitizer (DIG) option.
34
"demod2_y": Demod 3 Y. Requires an installed digitizer (DIG) option.
35
"demod3_y": Demod 4 Y. Requires an installed digitizer (DIG) option.
36
"demod4_y": Demod 5 Y. Requires an installed digitizer (DIG) option.
37
"demod5_y": Demod 6 Y. Requires an installed digitizer (DIG) option.
38
"demod6_y": Demod 7 Y. Requires an installed digitizer (DIG) option.
39
"demod7_y": Demod 8 Y. Requires an installed digitizer (DIG) option.
48
"demod0_r": Demod 1 R. Requires an installed digitizer (DIG) option.
49
"demod1_r": Demod 2 R. Requires an installed digitizer (DIG) option.
50
"demod2_r": Demod 3 R. Requires an installed digitizer (DIG) option.
51
"demod3_r": Demod 4 R. Requires an installed digitizer (DIG) option.
52
"demod4_r": Demod 5 R. Requires an installed digitizer (DIG) option.
53
"demod5_r": Demod 6 R. Requires an installed digitizer (DIG) option.
54
"demod6_r": Demod 7 R. Requires an installed digitizer (DIG) option.
55
"demod7_r": Demod 8 R. Requires an installed digitizer (DIG) option.
64
"demod0_theta": Demod 1 Θ. Requires an installed digitizer (DIG) option.
65
"demod1_theta": Demod 2 Θ. Requires an installed digitizer (DIG) option.
66
"demod2_theta": Demod 3 Θ. Requires an installed digitizer (DIG) option.
67
"demod3_theta": Demod 4 Θ. Requires an installed digitizer (DIG) option.
68
"demod4_theta": Demod 5 Θ. Requires an installed digitizer (DIG) option.
69
"demod5_theta": Demod 6 Θ. Requires an installed digitizer (DIG) option.
70
"demod6_theta": Demod 7 Θ. Requires an installed digitizer (DIG) option.
71
"demod7_theta": Demod 8 Θ. Requires an installed digitizer (DIG) option.
80
"pid0_value": PID 1 value. Requires an installed digitizer (DIG) option.
81
"pid1_value": PID 2 value. Requires an installed digitizer (DIG) option.
82
"pid2_value": PID 3 value. Requires an installed digitizer (DIG) option.
83
"pid3_value": PID 4 value. Requires an installed digitizer (DIG) option.
96
"boxcar0": Boxcar 1. Requires an installed digitizer (DIG) option.
97
"boxcar1": Boxcar 2. Requires an installed digitizer (DIG) option.
112
"au_cartesian0": AU Cartesian 1. Requires an installed digitizer (DIG) option.
113
"au_cartesian1": AU Cartesian 2. Requires an installed digitizer (DIG) option.
128
"au_polar1": Au Polar 2. Requires an installed digitizer (DIG) option.
144
"pid0_shift": PID 1 Shift. Requires an installed digitizer (DIG) option.
145
"pid1_shift": PID 2 Shift. Requires an installed digitizer (DIG) option.
146
"pid2_shift": PID 3 Shift. Requires an installed digitizer (DIG) option.
147
"pid3_shift": PID 4 Shift. Requires an installed digitizer (DIG) option.
176
"awg_marker0": AWG Marker 1. Requires an installed digitizer (DIG) option.
177
"awg_marker1": AWG Marker 2. Requires an installed digitizer (DIG) option.
178
"awg_marker2": AWG Marker 3. Requires an installed digitizer (DIG) option.
179
"awg_marker3": AWG Marker 4. Requires an installed digitizer (DIG) option.
192
"awg_trigger0": AWG Trigger 1. Requires an installed digitizer (DIG) option.
193
"awg_trigger1": AWG Trigger 2. Requires an installed digitizer (DIG) option.
194
"awg_trigger2": AWG Trigger 3. Requires an installed digitizer (DIG) option.
195
"awg_trigger3": AWG Trigger 4. Requires an installed digitizer (DIG) option.
208
"pid0_error": PID 1 Error. Requires an installed digitizer (DIG) option.
209
"pid1_error": PID 2 Error. Requires an installed digitizer (DIG) option.
210
"pid2_error": PID 3 Error. Requires an installed digitizer (DIG) option.
211
"pid3_error": PID 4 Error. Requires an installed digitizer (DIG) option.
/dev..../awgs/n/triggers/n/falling
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Sets a falling edge trigger.
/dev..../awgs/n/triggers/n/force
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Allows to manually force a trigger.
/dev..../awgs/n/triggers/n/gate/enable
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
If enabled the trigger will be gated by the trigger gating input signal.
/dev..../awgs/n/triggers/n/gate/inputselect
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Select the signal source used for trigger gating if gating is enabled.
0
"trigin2", "trigger_input2": Trigger In 3
1
"trigin3", "trigger_input3": Trigger In 4
/dev..../awgs/n/triggers/n/hysteresis/absolute
Properties:
Read, Write, Setting
Type:
Double
Unit:
V
Defines the voltage the source signal must deviate from the trigger level before the trigger is rearmed again. Set to 0 to turn it off. The sign is defined by the Edge setting.
/dev..../awgs/n/triggers/n/hysteresis/mode
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Selects the mode to define the hysteresis strength. The relative mode will work best over the full input range as long as the analog input signal does not suffer from excessive noise.
0
"absolute": Selects absolute hysteresis (V).
1
"relative": Selects a hysteresis relative to the adjusted full scale signal input range (%).
/dev..../awgs/n/triggers/n/hysteresis/relative
Properties:
Read, Write, Setting
Type:
Double
Unit:
%
Hysteresis relative to the adjusted full scale signal input range. A hysteresis value larger than 100% is allowed.
/dev..../awgs/n/triggers/n/level
Properties:
Read, Write, Setting
Type:
Double
Unit:
V
Defines the analog trigger level.
/dev..../awgs/n/triggers/n/rising
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Sets a rising edge trigger.
/dev..../awgs/n/triggers/n/slope
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Select the signal edge that should activate the trigger. The trigger will be level sensitive when the Level option is selected.
0
"level_sensitive": Level sensitive trigger
1
"rising_edge": Rising edge trigger
2
"falling_edge": Falling edge trigger
3
"both_edegs": Rising or falling edge trigger
/dev..../awgs/n/triggers/n/state
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
State of the Trigger: No trigger detected/trigger detected.
/dev..../awgs/n/userregs/n
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Integer user register value. The sequencer has reading and writing access to the user register values during run time.
/dev..../awgs/n/waveform/descriptors
Properties:
Read
Type:
ZIVectorData
Unit:
None
JSON-formatted string containing a dictionary of various properties of the current waveform: name, filename, function, channels, marker bits, length, timestamp.
/dev..../awgs/n/waveform/memoryusage
Properties:
Read
Type:
Double
Unit:
%
Amount of the used waveform data relative to the device cache memory. The cache memory provides space for 32 kSa (32'768 Sa) per-channel of waveform data. Memory Usage over 100% means that waveforms must be loaded from the main memory of 64 MSa (67'108'864 Sa) per-channel during playback, which can lead to delays.
/dev..../awgs/n/waveform/waves/n
Properties:
Read, Write
Type:
ZIVectorData
Unit:
None
The waveform data in the instrument's native format for the given playWave waveform index. This node will not work with subscribe as it does not push updates. For short vectors get may be used. For long vectors (causing get to time out) getAsEvent and poll can be used. The index of the waveform to be replaced can be determined using the Waveform sub-tab in the AWG tab of the LabOne User Interface.
CLOCKBASE
/dev..../clockbase
Properties:
Read
Type:
Double
Unit:
Hz
Returns the internal clock frequency of the device.
DIOS
/dev..../dios/n/auxdrive
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Not used. Reserved for future use.
/dev..../dios/n/decimation
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Sets the decimation factor for DIO data streamed to the host computer.
/dev..../dios/n/drive
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
When on (1), the corresponding 8-bit bus is in output mode. When off (0), it is in input mode. Bit 0 corresponds to the least significant byte. For example, the value 1 drives the least significant byte, the value 8 drives the most significant byte.
/dev..../dios/n/extclk
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Select DIO internal or external clocking.
0
The DIO is internally clocked with a frequency of 56.25 MHz.
1
"external": The DIO is externally clocked with a clock signal connected to DIO Pin 68. The available range is from 1 Hz up to the internal clock frequency.
2
"internal": The DIO is internally clocked with a frequency of 50 MHz.
/dev..../dios/n/input
Properties:
Read, Stream
Type:
ZIDIOSample
Unit:
None
Gives the value of the DIO input for those bytes where drive is disabled.
/dev..../dios/n/mode
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Select DIO mode
0
"manual": Enables manual control of the DIO output bits.
1
"awg_sequencer_commands": Enables setting of DIO output values by AWG sequencer commands.
2
"qa_result": Enables setting of DIO output values by QA results.
4
"qa_result_qccs": Enables setting of DIO output values by QA results compatible with the QCCS.
/dev..../dios/n/output
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Sets the value of the DIO output for those bytes where 'drive' is enabled.
FEATURES
/dev..../features/code
Properties:
Write
Type:
String
Unit:
None
Node providing a mechanism to write feature codes.
/dev..../features/devtype
Properties:
Read
Type:
String
Unit:
None
Returns the device type.
/dev..../features/options
Properties:
Read
Type:
String
Unit:
None
Returns enabled options.
/dev..../features/serial
Properties:
Read
Type:
String
Unit:
None
Device serial number.
OSCS
/dev..../oscs/n/freq
Properties:
Read, Write, Setting
Type:
Double
Unit:
Hz
Frequency control for each oscillator.
QAS
/dev..../qas/n/bypass/crosstalk
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Bypass the Crosstalk matrix in order to reduce the latency through the system.
/dev..../qas/n/bypass/deskew
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Bypass the Deskew matrix in order to reduce the latency through the system.
/dev..../qas/n/bypass/rotation
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Bypass the complex Rotation in order to reduce the latency through the system.
/dev..../qas/n/correlations/n/enable
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Enable correlation for a given channel.
/dev..../qas/n/correlations/n/source
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Controls the source with which correlation should be made. Selecting the same source as the readout channel number is effectively self-correlation.
/dev..../qas/n/crosstalk/bypass
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Bypass the Crosstalk matrix in order to reduce the latency through the system.
/dev..../qas/n/crosstalk/rows/n/cols/n
Properties:
Read, Write, Setting
Type:
Double
Unit:
None
Transformation coefficients for each channel as a 10×10 matrix. The values are defined as floating point numbers. In hardware, the coefficients are implemented as 17-bit signed integers.
/dev..../qas/n/delay
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Delay in units of samples that adjusts the time at which the integration starts in relation to the trigger signal of the weighted integration units.
/dev..../qas/n/deskew/rows/n/cols/n
Properties:
Read, Write, Setting
Type:
Double
Unit:
None
Implements a 2×2 matrix multiplication. The two input signals are treated as a vector with two elements and the result is a vector as well.
/dev..../qas/n/integration/errors
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Number of hold-off violations detected in the INTEGRATION unit since last reset.
/dev..../qas/n/integration/length
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Integration time of all weighted integration units specified in units of samples. A maximum of 4096 samples can be integrated, which corresponds to 2.3 µs.
/dev..../qas/n/integration/mode
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Operation mode of all weighted integration units.
0
"normal": Normal mode. The integration weights are given by the user-programmed filter memory 1
1
"spectroscopy": Spectroscopy mode. The integration weights are generated by a digital oscillator. This mode offers enhanced frequency resolution.
/dev..../qas/n/integration/sources/n
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Controls the routing of the input signals to the INTEGRATION units.
0
"sigin0_real_sigin1_imag": Signal input 1 to real part, Signal input 2 to imaginary part.
1
"sigin1_real_sigin0_imag": Signal input 2 to real part, Signal input 1 to imaginary part
/dev..../qas/n/integration/trigger/channel
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Selects the trigger channel for the weighted integration.
0
Trigger 1
1
Trigger 2
2
Trigger In 3
3
Trigger In 4
7
AWG Integration Trigger (default)
/dev..../qas/n/integration/weights/n/imag
Properties:
Read, Write, Setting
Type:
ZIVectorData
Unit:
None
The weight functions to be applied on the imaginary part of the input signal. The weights are written as vectors. In the hardware the weights are implemented as 17-bit integers.
/dev..../qas/n/integration/weights/n/real
Properties:
Read, Write, Setting
Type:
ZIVectorData
Unit:
None
The weight functions to be applied on the real part of the input signal. The weights are written as vectors. In the hardware the weights are implemented as 17-bit integers.
/dev..../qas/n/monitor/acquired
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Number of acquired averages.
/dev..../qas/n/monitor/averages
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
log2 of the number of averages to perform, i.e. 0 means no averaging, 1 means 2 values are averaged, etc. Maximum setting is 15 meaning 2^15 values are averaged.
/dev..../qas/n/monitor/enable
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Enable the trigger inputs of the MONITOR from the AWG.
/dev..../qas/n/monitor/errors
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Number of hold-off errors detected since last reset.
/dev..../qas/n/monitor/inputs/n/wave
Properties:
Read
Type:
ZIVectorData
Unit:
V
The results of the data acquired for Signal Input in units of volts.
/dev..../qas/n/monitor/length
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
The time duration of each capture in samples. A maximum of 4096 samples can be captured, which corresponds to 2.3 µs.
/dev..../qas/n/monitor/reset
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Reset the Input Monitor and prepare it for a new measurement.
/dev..../qas/n/monitor/trigger/channel
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Selects the trigger channel for the input averaging.
0
Trigger 1
1
Trigger 2
2
Trigger In 3
3
Trigger In 4
7
AWG Monitor Trigger (default)
/dev..../qas/n/result/acquired
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Indicates the index of the acquisition that will be performed on the next trigger.
/dev..../qas/n/result/averages
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
log2 of the number of averages to perform, i.e. 0 means no averaging, 1 means 2 values are averaged, etc. Maximum setting is 15 meaning 2^15 values are averaged.
/dev..../qas/n/result/data/n/wave
Properties:
Read
Type:
ZIVectorData
Unit:
V
The results of the data acquired for Signal Input in units of volts.
/dev..../qas/n/result/enable
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Enable the trigger inputs of the result logger from the AWG.
/dev..../qas/n/result/errors
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Number of hold-off errors detected since last reset.
/dev..../qas/n/result/length
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Number of data points to record. One data point corresponds to a single averaged output of the selected source.
/dev..../qas/n/result/mode
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Selects the order of the result logger.
0
"experiment_first": Experiment first.
1
"average_first": Average first.
/dev..../qas/n/result/reset
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Reset the Result Logger and prepare it for a new measurement.
/dev..../qas/n/result/source
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Select the signal source of the Result Logger.
0
"result_after_crosstalk_unit": Result after crosstalk unit.
1
"result_after_threshold_unit": Result after Threshold unit.
2
"result_after_rotation_unit": Result after Rotation unit.
4
"correlation_after_crosstalk_unit": Correlation unit after the Crosstalk unit.
5
"correlation_after_threshold_unit": Correlation unit after the Threshold unit.
/dev..../qas/n/result/statistics/data/n/errors
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Number of state errors measured for this channel. A state error occurs when there is a discrepancy between the measured state of this channel and the state that is predicted based on the configured state table.
/dev..../qas/n/result/statistics/data/n/flips
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Number of flips measured for this channel. A flip is defined as a change in qubit state from one measurement to the next.
/dev..../qas/n/result/statistics/data/n/ones
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Number of logical ones measured for this channel.
/dev..../qas/n/result/statistics/enable
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Enable automatic readout of the STATISTICS results.
/dev..../qas/n/result/statistics/length
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
The number of data points to record. One data point corresponds to a single averaged output of the selected source.
/dev..../qas/n/result/statistics/reset
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Reset the STATISTICS results in preparation for a new measurement.
/dev..../qas/n/result/statistics/stateerrors
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Number of STATEMAP violations detected during measurement.
/dev..../qas/n/result/statistics/statemap
Properties:
Read, Write, Setting
Type:
ZIVectorData
Unit:
None
Defines the state table. The node has one entry for each possible state, i.e. 32 entries in case of five readout channels. The value of each entry defines the expected next state as a simple bit mask mapped to an unsigned integer.
/dev..../qas/n/rotations/n
Properties:
Read, Write, Setting
Type:
Complex Double
Unit:
None
Rotation coefficient applied to the signals after integration. The values are defined as complex floating point numbers.
/dev..../qas/n/thresholds/n/correlation/enable
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Enables the correlation for the given channel.
/dev..../qas/n/thresholds/n/correlation/source
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Select the channel with which correlation should be made. Selecting the same channel as the readout channel number corresponds to self-correlation.
/dev..../qas/n/thresholds/n/level
Properties:
Read, Write, Setting
Type:
Double
Unit:
None
The discretization level applied to the output of the Crosstalk Suppression matrix.
SCOPES
/dev..../scopes/n/channel
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Activates the scope channels.
1
Only channel 1 is active.
2
Only channel 2 is active.
3
"both": Both, channel 1 and 2 are active.
/dev..../scopes/n/channels/n/bwlimit
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Selects between sample decimation and sample averaging. Averaging avoids aliasing, but may conceal signal peaks.
0
"on": On: Selects sample averaging for sample rates lower than the maximal available sampling rate.
1
"off": OFF: Selects sample decimation for sample rates lower than the maximal available sampling rate.
/dev..../scopes/n/channels/n/fullscale
Properties:
Read, Write, Setting
Type:
Double
Unit:
Dependent
Indicates the full scale value of the scope channel.
/dev..../scopes/n/channels/n/inputselect
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Selects the scope input signal.
0
"sigin0", "signal_input0": Signal Input 1
1
"sigin1", "signal_input1": Signal Input 2
2
"trigin0", "trigger_input0": Trigger Input 1
3
"trigin1", "trigger_input1": Trigger Input 2
4
"auxout0", "auxiliary_output0": Aux Output 1. Requires an installed digitizer (DIG) option.
5
"auxout1", "auxiliary_output1": Aux Output 2. Requires an installed digitizer (DIG) option.
6
"auxout2", "auxiliary_output2": Aux Output 3. Requires an installed digitizer (DIG) option.
7
"auxout3", "auxiliary_output3": Aux Output 4. Requires an installed digitizer (DIG) option.
8
"auxin0", "auxiliary_input0": Aux Input 1
9
"auxin1", "auxiliary_input1": Aux Input 2
10
"demod3": Osc φ Demod 4
11
"demod7": Osc φ Demod 8
16
"demod0_x": Demod 1 X. Requires an installed digitizer (DIG) option.
17
"demod1_x": Demod 2 X. Requires an installed digitizer (DIG) option.
18
"demod2_x": Demod 3 X. Requires an installed digitizer (DIG) option.
19
"demod3_x": Demod 4 X. Requires an installed digitizer (DIG) option.
20
"demod4_x": Demod 5 X. Requires an installed digitizer (DIG) option.
21
"demod5_x": Demod 6 X. Requires an installed digitizer (DIG) option.
22
"demod6_x": Demod 7 X. Requires an installed digitizer (DIG) option.
23
"demod7_x": Demod 8 X. Requires an installed digitizer (DIG) option.
32
"demod0_y": Demod 1 Y. Requires an installed digitizer (DIG) option.
33
"demod1_y": Demod 2 Y. Requires an installed digitizer (DIG) option.
34
"demod2_y": Demod 3 Y. Requires an installed digitizer (DIG) option.
35
"demod3_y": Demod 4 Y. Requires an installed digitizer (DIG) option.
36
"demod4_y": Demod 5 Y. Requires an installed digitizer (DIG) option.
37
"demod5_y": Demod 6 Y. Requires an installed digitizer (DIG) option.
38
"demod6_y": Demod 7 Y. Requires an installed digitizer (DIG) option.
39
"demod7_y": Demod 8 Y. Requires an installed digitizer (DIG) option.
48
"demod0_r": Demod 1 R. Requires an installed digitizer (DIG) option.
49
"demod1_r": Demod 2 R. Requires an installed digitizer (DIG) option.
50
"demod2_r": Demod 3 R. Requires an installed digitizer (DIG) option.
51
"demod3_r": Demod 4 R. Requires an installed digitizer (DIG) option.
52
"demod4_r": Demod 5 R. Requires an installed digitizer (DIG) option.
53
"demod5_r": Demod 6 R. Requires an installed digitizer (DIG) option.
54
"demod6_r": Demod 7 R. Requires an installed digitizer (DIG) option.
55
"demod7_r": Demod 8 R. Requires an installed digitizer (DIG) option.
64
"demod0_theta": Demod 1 Θ. Requires an installed digitizer (DIG) option.
65
"demod1_theta": Demod 2 Θ. Requires an installed digitizer (DIG) option.
66
"demod2_theta": Demod 3 Θ. Requires an installed digitizer (DIG) option.
67
"demod3_theta": Demod 4 Θ. Requires an installed digitizer (DIG) option.
68
"demod4_theta": Demod 5 Θ. Requires an installed digitizer (DIG) option.
69
"demod5_theta": Demod 6 Θ. Requires an installed digitizer (DIG) option.
70
"demod6_theta": Demod 7 Θ. Requires an installed digitizer (DIG) option.
71
"demod7_theta": Demod 8 Θ. Requires an installed digitizer (DIG) option.
80
"pid0_value": PID 1 value. Requires an installed digitizer (DIG) option.
81
"pid1_value": PID 2 value. Requires an installed digitizer (DIG) option.
82
"pid2_value": PID 3 value. Requires an installed digitizer (DIG) option.
83
"pid3_value": PID 4 value. Requires an installed digitizer (DIG) option.
96
"boxcar0": Boxcar 1. Requires an installed digitizer (DIG) option.
97
"boxcar1": Boxcar 2. Requires an installed digitizer (DIG) option.
112
"au_cartesian0": AU Cartesian 1. Requires an installed digitizer (DIG) option.
113
"au_cartesian1": AU Cartesian 2. Requires an installed digitizer (DIG) option.
128
"au_polar1": Au Polar 2. Requires an installed digitizer (DIG) option.
144
"pid0_shift": PID 1 Shift. Requires an installed digitizer (DIG) option.
145
"pid1_shift": PID 2 Shift. Requires an installed digitizer (DIG) option.
146
"pid2_shift": PID 3 Shift. Requires an installed digitizer (DIG) option.
147
"pid3_shift": PID 4 Shift. Requires an installed digitizer (DIG) option.
160
Reserved for future use.
161
Reserved for future use.
176
"awg_marker0": AWG Marker 1. Requires an installed digitizer (DIG) option.
177
"awg_marker1": AWG Marker 2. Requires an installed digitizer (DIG) option.
178
"awg_marker2": AWG Marker 3. Requires an installed digitizer (DIG) option.
179
"awg_marker3": AWG Marker 4. Requires an installed digitizer (DIG) option.
192
"awg_trigger0": AWG Trigger 1. Requires an installed digitizer (DIG) option.
193
"awg_trigger1": AWG Trigger 2. Requires an installed digitizer (DIG) option.
194
"awg_trigger2": AWG Trigger 3. Requires an installed digitizer (DIG) option.
195
"awg_trigger3": AWG Trigger 4. Requires an installed digitizer (DIG) option.
208
"pid0_error": PID 1 Error. Requires an installed digitizer (DIG) option.
209
"pid1_error": PID 2 Error. Requires an installed digitizer (DIG) option.
210
"pid2_error": PID 3 Error. Requires an installed digitizer (DIG) option.
211
"pid3_error": PID 4 Error. Requires an installed digitizer (DIG) option.
/dev..../scopes/n/channels/n/limitlower
Properties:
Read, Write, Setting
Type:
Double
Unit:
Dependent
Lower limit of the scope full scale range. For demodulator, PID, Boxcar, and AU signals the limit should be adjusted so that the signal covers the specified range to achieve optimal resolution.
/dev..../scopes/n/channels/n/limitupper
Properties:
Read, Write, Setting
Type:
Double
Unit:
Dependent
Upper limit of the scope full scale range. For demodulator, PID, Boxcar, and AU signals the limit should be adjusted so that the signal covers the specified range to achieve optimal resolution.
/dev..../scopes/n/channels/n/offset
Properties:
Read, Write, Setting
Type:
Double
Unit:
Dependent
Indicates the offset value of the scope channel.
/dev..../scopes/n/enable
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Enables the acquisition of scope shots.
/dev..../scopes/n/length
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Defines the length of the recorded Scope shot in number of samples.
/dev..../scopes/n/segments/count
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Specifies the number of segments to be recorded in device memory. The maximum scope shot size is given by the available memory divided by the number of segments. This functionality requires the DIG option.
/dev..../scopes/n/segments/enable
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Enable segmented scope recording. This allows for full bandwidth recording of scope shots with a minimum dead time between individual shots. This functionality requires the DIG option.
/dev..../scopes/n/single
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Puts the Scope into single shot mode.
/dev..../scopes/n/stream/enables/n
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Enable scope streaming for the specified channel. This allows for continuous recording of scope data on the plotter and streaming to disk. Note: scope streaming requires the DIG option.
/dev..../scopes/n/stream/rate
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
Hz
Streaming Rate of the scope channels. The streaming rate can be adjusted independent from the scope sampling rate. The maximum rate depends on the interface used for transfer. Note: scope streaming requires the DIG option.
6
"28.1_MHz": 28.1 MHz
7
"14_MHz": 14.0 MHz
8
"7.03_MHz": 7.03 MHz
9
"3.5_MHz": 3.50 MHz
10
"1.75_MHz": 1.75 MHz
11
"880_kHz": 880 kHz
12
"440_kHz": 440 kHz
13
"220_kHz": 220 kHz
14
"110_kHz": 110 kHz
15
"54.9_kHz": 54.9 kHz
16
"27.5_kHz": 27.5 kHz
/dev..../scopes/n/stream/sample
Properties:
Read, Stream
Type:
ZIScopeWave
Unit:
None
Streaming node containing scope sample data. Note: scope streaming requires the DIG option.
/dev..../scopes/n/time
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Defines the time base of the scope from the divider exponent of the instrument's clock base. The resulting sampling time is 2^n/clockbase.
0
1.80 GHz
1
900 MHz
2
450 MHz
3
225 MHz
4
113 MHz
5
56.2 MHz
6
28.1 MHz
7
14.0 MHz
8
7.03 MHz
9
3.50 MHz
10
1.75 MHz
11
880 kHz
12
440 kHz
13
220 kHz
14
110 kHz
15
54.9 kHz
16
27.5 kHz
/dev..../scopes/n/trigchannel
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Selects the trigger source signal.
0
"sigin0", "signal_input0": Signal Input 1
1
"sigin1", "signal_input1": Signal Input 2
2
"trigin0", "trigger_input0": Trigger Input 1
3
"trigin1", "trigger_input1": Trigger Input 2
4
"auxout0", "auxiliary_output0": Aux Output 1. Requires an installed digitizer (DIG) option.
5
"auxout1", "auxiliary_output1": Aux Output 2. Requires an installed digitizer (DIG) option.
6
"auxout2", "auxiliary_output2": Aux Output 3. Requires an installed digitizer (DIG) option.
7
"auxout3", "auxiliary_output3": Aux Output 4. Requires an installed digitizer (DIG) option.
8
"auxin0", "auxiliary_input0": Aux Input 1
9
"auxin1", "auxiliary_input1": Aux Input 2
10
"demod3": Osc φ Demod 4
11
"demod7": Osc φ Demod 8
16
"demod0_x": Demod 1 X. Requires an installed digitizer (DIG) option.
17
"demod1_x": Demod 2 X. Requires an installed digitizer (DIG) option.
18
"demod2_x": Demod 3 X. Requires an installed digitizer (DIG) option.
19
"demod3_x": Demod 4 X. Requires an installed digitizer (DIG) option.
20
"demod4_x": Demod 5 X. Requires an installed digitizer (DIG) option.
21
"demod5_x": Demod 6 X. Requires an installed digitizer (DIG) option.
22
"demod6_x": Demod 7 X. Requires an installed digitizer (DIG) option.
23
"demod7_x": Demod 8 X. Requires an installed digitizer (DIG) option.
32
"demod0_y": Demod 1 Y. Requires an installed digitizer (DIG) option.
33
"demod1_y": Demod 2 Y. Requires an installed digitizer (DIG) option.
34
"demod2_y": Demod 3 Y. Requires an installed digitizer (DIG) option.
35
"demod3_y": Demod 4 Y. Requires an installed digitizer (DIG) option.
36
"demod4_y": Demod 5 Y. Requires an installed digitizer (DIG) option.
37
"demod5_y": Demod 6 Y. Requires an installed digitizer (DIG) option.
38
"demod6_y": Demod 7 Y. Requires an installed digitizer (DIG) option.
39
"demod7_y": Demod 8 Y. Requires an installed digitizer (DIG) option.
48
"demod0_r": Demod 1 R. Requires an installed digitizer (DIG) option.
49
"demod1_r": Demod 2 R. Requires an installed digitizer (DIG) option.
50
"demod2_r": Demod 3 R. Requires an installed digitizer (DIG) option.
51
"demod3_r": Demod 4 R. Requires an installed digitizer (DIG) option.
52
"demod4_r": Demod 5 R. Requires an installed digitizer (DIG) option.
53
"demod5_r": Demod 6 R. Requires an installed digitizer (DIG) option.
54
"demod6_r": Demod 7 R. Requires an installed digitizer (DIG) option.
55
"demod7_r": Demod 8 R. Requires an installed digitizer (DIG) option.
64
"demod0_theta": Demod 1 Θ. Requires an installed digitizer (DIG) option.
65
"demod1_theta": Demod 2 Θ. Requires an installed digitizer (DIG) option.
66
"demod2_theta": Demod 3 Θ. Requires an installed digitizer (DIG) option.
67
"demod3_theta": Demod 4 Θ. Requires an installed digitizer (DIG) option.
68
"demod4_theta": Demod 5 Θ. Requires an installed digitizer (DIG) option.
69
"demod5_theta": Demod 6 Θ. Requires an installed digitizer (DIG) option.
70
"demod6_theta": Demod 7 Θ. Requires an installed digitizer (DIG) option.
71
"demod7_theta": Demod 8 Θ. Requires an installed digitizer (DIG) option.
80
"pid0_value": PID 1 value. Requires an installed digitizer (DIG) option.
81
"pid1_value": PID 2 value. Requires an installed digitizer (DIG) option.
82
"pid2_value": PID 3 value. Requires an installed digitizer (DIG) option.
83
"pid3_value": PID 4 value. Requires an installed digitizer (DIG) option.
96
"boxcar0": Boxcar 1. Requires an installed digitizer (DIG) option.
97
"boxcar1": Boxcar 2. Requires an installed digitizer (DIG) option.
112
"au_cartesian0": AU Cartesian 1. Requires an installed digitizer (DIG) option.
113
"au_cartesian1": AU Cartesian 2. Requires an installed digitizer (DIG) option.
128
"au_polar0": AU Polar 1. Requires an installed digitizer (DIG) option.
129
"au_polar1": Au Polar 2. Requires an installed digitizer (DIG) option.
144
"pid0_shift": PID 1 Shift. Requires an installed digitizer (DIG) option.
145
"pid1_shift": PID 2 Shift. Requires an installed digitizer (DIG) option.
146
"pid2_shift": PID 3 Shift. Requires an installed digitizer (DIG) option.
147
"pid3_shift": PID 4 Shift. Requires an installed digitizer (DIG) option.
176
"awg_marker0": AWG Marker 1. Requires an installed digitizer (DIG) option.
177
"awg_marker1": AWG Marker 2. Requires an installed digitizer (DIG) option.
178
"awg_marker2": AWG Marker 3. Requires an installed digitizer (DIG) option.
179
"awg_marker3": AWG Marker 4. Requires an installed digitizer (DIG) option.
192
"awg_trigger0": AWG Trigger 1. Requires an installed digitizer (DIG) option.
193
"awg_trigger1": AWG Trigger 2. Requires an installed digitizer (DIG) option.
194
"awg_trigger2": AWG Trigger 3. Requires an installed digitizer (DIG) option.
195
"awg_trigger3": AWG Trigger 4. Requires an installed digitizer (DIG) option.
208
"pid0_error": PID 1 Error. Requires an installed digitizer (DIG) option.
209
"pid1_error": PID 2 Error. Requires an installed digitizer (DIG) option.
210
"pid2_error": PID 3 Error. Requires an installed digitizer (DIG) option.
211
"pid3_error": PID 4 Error. Requires an installed digitizer (DIG) option.
/dev..../scopes/n/trigdelay
Properties:
Read, Write, Setting
Type:
Double
Unit:
s
Trigger position relative to reference. A positive delay results in less data being acquired before the trigger point, a negative delay results in more data being acquired before the trigger point.
/dev..../scopes/n/trigenable
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
When triggering is enabled scope data are acquired every time the defined trigger condition is met.
0
"off": OFF: Continuous scope shot acquisition
1
"on": ON: Trigger based scope shot acquisition
/dev..../scopes/n/trigfalling
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
When set (1), enables falling edge triggering. This settings is synchronized with the settings done in the /TRIGSLOPE node.
/dev..../scopes/n/trigforce
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Forces a trigger event.
/dev..../scopes/n/triggate/enable
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
If enabled the trigger will be gated by the trigger gating input signal. This feature requires the DIG option.
/dev..../scopes/n/triggate/inputselect
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Select the signal source used for trigger gating if gating is enabled. This feature requires the DIG option.
0
"trigin2_high", "trigger_input2_high": Only trigger if the Trigger Input 3 is at high level.
1
"trigin2_low", "trigger_input2_low": Only trigger if the Trigger Input 3 is at low level.
2
"trigin3_high", "trigger_input3_high": Only trigger if the Trigger Input 4 is at high level.
3
"trigin3_low", "trigger_input3_low": Only trigger if the Trigger Input 4 is at low level.
/dev..../scopes/n/trigholdoff
Properties:
Read, Write, Setting
Type:
Double
Unit:
s
Defines the time before the trigger is rearmed after a recording event.
/dev..../scopes/n/trigholdoffcount
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Defines the trigger event number that will trigger the next recording after a recording event. A value of '1' will start a recording for each trigger event.
/dev..../scopes/n/trigholdoffmode
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Selects the holdoff mode.
0
"time": Holdoff is defined as time (s).
1
"number_of_events": Holdoff is defined as number of events.
/dev..../scopes/n/trighysteresis/absolute
Properties:
Read, Write, Setting
Type:
Double
Unit:
V
Defines the voltage the source signal must deviate from the trigger level before the trigger is rearmed again. Set to 0 to turn it off. The sign is defined by the Edge setting.
/dev..../scopes/n/trighysteresis/mode
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Selects the mode to define the hysteresis strength. The relative mode will work best over the full input range as long as the analog input signal does not suffer from excessive noise.
0
"absolute": Selects absolute hysteresis.
1
"relative": Selects a hysteresis relative to the adjusted full scale signal input range.
/dev..../scopes/n/trighysteresis/relative
Properties:
Read, Write, Setting
Type:
Double
Unit:
None
Hysteresis relative to the adjusted full scale signal input range. A hysteresis value larger than 1 (100%) is allowed.
/dev..../scopes/n/triglevel
Properties:
Read, Write, Setting
Type:
Double
Unit:
V
Defines the trigger level.
/dev..../scopes/n/trigreference
Properties:
Read, Write, Setting
Type:
Double
Unit:
None
Trigger reference position relative to the acquired data. Default is 50% (0.5) which results in a reference point in the middle of the acquired data.
/dev..../scopes/n/trigrising
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
When set (1), enables rising edge triggering. This settings is synchronized with the settings done in the /TRIGFALLING node.
/dev..../scopes/n/trigslope
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Sets on which slope of the trigger signal the scope should trigger. This setting is synchronized with the settings done in the /TRIGFALLING and /TRIGRISING nodes.
0
"none": None
1
"rising": Rising edge triggered.
2
"falling": Falling edge triggered.
3
"both": Triggers on both the rising and falling edge.
/dev..../scopes/n/trigstate
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
When 1, indicates that the trigger signal satisfies the conditions of the trigger.
/dev..../scopes/n/wave
Properties:
Read, Stream
Type:
ZIScopeWave
Unit:
None
Contains the scope shot data.
SIGINS
/dev..../sigins/n/ac
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Defines the input coupling for the Signal Inputs. AC coupling inserts a high-pass filter.
0
"dc": OFF: DC coupling
1
"ac": ON: AC coupling
/dev..../sigins/n/autorange
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Automatic adjustment of the Range to about two times the maximum signal input amplitude measured over about 100 ms.
/dev..../sigins/n/bw
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Bandwidth of input aliasing filter at 600 MHz (ON) or 900 MHz (OFF) cut off frequency.
/dev..../sigins/n/diff
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Switch input mode between normal (OFF), inverted, and differential. The differential modes are implemented digitally and are not suited for analog common-mode rejection. When using the differential modes, the user is responsible for keeping the configuration (range, coupling, termination) of both channels in sync, the device provides no control mechanisms to force that.
0
"off": Off
1
"inverted": Inverted
/dev..../sigins/n/imp50
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Switches between 50 Ohm (ON) and 1 M Ohm (OFF).
0
"1_MOhm": OFF: 1 M Ohm
1
"50_Ohm": ON: 50 Ohm
/dev..../sigins/n/max
Properties:
Read, Write
Type:
Double
Unit:
None
Indicates the maximum normalized voltage measured on this channel. It can be between -1 and 1. To prevent signal clipping and overvoltage, it is advised to keep it between -0.9 and 0.9.
/dev..../sigins/n/min
Properties:
Read, Write
Type:
Double
Unit:
None
Indicates the minimum normalized voltage measured on this channel. It can be between -1 and 1. To prevent signal clipping and overvoltage, it is advised to keep it between -0.9 and 0.9.
/dev..../sigins/n/on
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Enables the signal input.
/dev..../sigins/n/range
Properties:
Read, Write, Setting
Type:
Double
Unit:
V
Defines the gain of the analog input amplifier. The range should exceed the incoming signal by roughly a factor two including a potential DC offset. The instrument selects the next higher available range relative to a value inserted by the user. A suitable choice of this setting optimizes the accuracy and signal-to-noise ratio by ensuring that the full dynamic range of the input ADC is used.
/dev..../sigins/n/scaling
Properties:
Read, Write, Setting
Type:
Double
Unit:
None
Applies the given scaling factor to the input signal.
SIGOUTS
/dev..../sigouts/n/amplitudes/n
Properties:
Read, Write, Setting
Type:
Double
Unit:
V
Sets the peak amplitude that the oscillator assigned to the given demodulation channel contributes to the signal output.
/dev..../sigouts/n/autorange
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
If enabled, selects the most suited output range automatically.
/dev..../sigouts/n/enables/n
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
V
Enables individual output signal amplitude. When the MD option is used, it is possible to generate signals being the linear combination of the available demodulator frequencies.
/dev..../sigouts/n/imp50
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Select the load impedance between 50 Ohm and HiZ. The impedance of the output is always 50 Ohm. For a load impedance of 50 Ohm the displayed voltage is half the output voltage to reflect the voltage seen at the load.
0
"high_impedance": HiZ
1
"50_Ohm": 50 Ohm
/dev..../sigouts/n/offset
Properties:
Read, Write, Setting
Type:
Double
Unit:
V
Defines the DC voltage that is added to the dynamic part of the output signal.
/dev..../sigouts/n/on
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Enabling/Disabling the Signal Output. Corresponds to the blue LED indicator on the instrument front panel.
/dev..../sigouts/n/over
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Indicates that the signal output is overloaded.
/dev..../sigouts/n/range
Properties:
Read, Write, Setting
Type:
Double
Unit:
V
Sets the output voltage range. The instrument selects the next higher available range.
STATS
/dev..../stats/cmdstream/bandwidth ¶
Properties:
Read
Type:
Double
Unit:
Mbit/s
Command streaming bandwidth usage on the physical network connection between device and data server.
/dev..../stats/cmdstream/bytesreceived
Properties:
Read
Type:
Integer (64 bit)
Unit:
B
Number of bytes received on the command stream from the device since session start.
/dev..../stats/cmdstream/bytessent
Properties:
Read
Type:
Integer (64 bit)
Unit:
B
Number of bytes sent on the command stream from the device since session start.
/dev..../stats/cmdstream/packetslost
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Number of command packets lost since device start. Command packets contain device settings that are sent to and received from the device.
/dev..../stats/cmdstream/packetsreceived
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Number of packets received on the command stream from the device since session start.
/dev..../stats/cmdstream/packetssent
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Number of packets sent on the command stream to the device since session start.
/dev..../stats/cmdstream/pending
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Number of buffers ready for receiving command packets from the device.
/dev..../stats/cmdstream/processing
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Number of buffers being processed for command packets. Small values indicate proper performance. For a TCP/IP interface, command packets are sent using the TCP protocol.
/dev..../stats/datastream/bandwidth ¶
Properties:
Read
Type:
Double
Unit:
Mbit/s
Data streaming bandwidth usage on the physical network connection between device and data server.
/dev..../stats/datastream/bytesreceived
Properties:
Read
Type:
Integer (64 bit)
Unit:
B
Number of bytes received on the data stream from the device since session start.
/dev..../stats/datastream/packetslost
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Number of data packets lost since device start. Data packets contain measurement data.
/dev..../stats/datastream/packetsreceived
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Number of packets received on the data stream from the device since session start.
/dev..../stats/datastream/pending
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Number of buffers ready for receiving data packets from the device.
/dev..../stats/datastream/processing
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Number of buffers being processed for data packets. Small values indicate proper performance. For a TCP/IP interface, data packets are sent using the UDP protocol.
/dev..../stats/physical/currents/n
Properties:
Read
Type:
Double
Unit:
mA
Internal current measurements.
/dev..../stats/physical/fanspeed
Properties:
Read
Type:
Double
Unit:
RPM
Speed of the internal cooling fan.
/dev..../stats/physical/fpga/aux
Properties:
Read
Type:
Double
Unit:
V
Supply voltage of the FPGA.
/dev..../stats/physical/fpga/core
Properties:
Read
Type:
Double
Unit:
V
Core voltage of the FPGA.
/dev..../stats/physical/fpga/temp
Properties:
Read
Type:
Double
Unit:
°C
Internal temperature of the FPGA.
/dev..../stats/physical/overtemperature
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
This flag is set to 1 if the temperature of the FPGA exceeds 85°C. It will be reset to 0 after a restart of the device.
/dev..../stats/physical/temperatures/n
Properties:
Read
Type:
Double
Unit:
°C
Internal temperature measurements.
/dev..../stats/physical/voltages/n
Properties:
Read
Type:
Double
Unit:
V
Internal voltage measurements.
STATUS
/dev..../status/adc0max
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
The maximum value on Signal Input 1 (ADC0) during 100 ms.
/dev..../status/adc0min
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
The minimum value on Signal Input 1 (ADC0) during 100 ms
/dev..../status/adc1max
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
The maximum value on Signal Input 2 (ADC1) during 100 ms.
/dev..../status/adc1min
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
The minimum value on Signal Input 2 (ADC1) during 100 ms
/dev..../status/fifolevel
Properties:
Read
Type:
Double
Unit:
None
USB FIFO level: Indicates the USB FIFO fill level inside the device. When 100%, data is lost
/dev..../status/flags/binary
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
A set of binary flags giving an indication of the state of various parts of the device. Bit 0: Signal Input 1 overflow, Bit 1: Signal Input 2 overflow, Bit 2: Analog PLL fail, Bit 3: Output 1 DAC OK, Bit 4: Output 2 DAC OK, Bit 5: Signal Output 1 clipping, Bit 6: Signal Output 2 clipping, Bit 7: Ext Ref 1 Locked, Bit 8: Ext Ref 2 Locked, Bit 9:Ext Ref 3 Locked, Bit 10:Ext Ref 4 Locked, Bit 11: Sample Loss, Bits 12 - 13: Trigger In 1, Bits 14 - 15: Trigger In 2, Bits 16 - 17: Trigger In 3, Bits 18 - 19: Trigger In 4, Bit 20: PLL 1 locked, Bit 21: PLL 2 locked, Bit 22: PLL 3 locked, Bit 23: PLL 4 locked, Bit 24: Rubidium clock locked, Bit 25: AU Cartesian 1 Overflow, Bit 26: AU Cartesian 2 Overflow, Bit 27: AU Polar 1 Overflow, Bit 28: AU Polar 2 Overflow.
/dev..../status/flags/packetlosstcp
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Flag indicating if tcp packages have been lost.
/dev..../status/flags/packetlossudp
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Flag indicating if udp packages have been lost.
/dev..../status/time
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
The current timestamp.
SYSTEM
/dev..../system/activeinterface
Properties:
Read
Type:
String
Unit:
None
Currently active interface of the device.
/dev..../system/awg/channelgrouping
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Sets the channel grouping mode of the device.
0
"groups_of_2": Use the outputs in groups of 2. One sequencer program controls 2 outputs (use /dev..../awgs/0..4/).
1
"groups_of_4": Use the outputs in groups of 4. One sequencer program controls 4 outputs (use /dev..../awgs/0/ and /dev..../awgs/2/)
2
"groups_of_8": Use the outputs in groups of 8. One sequencer program controls 8 outputs (use /dev..../awgs/0/). Requires 8 channel device.
/dev..../system/boardrevisions/n
Properties:
Read
Type:
String
Unit:
None
Hardware revision of the FPGA base board
/dev..../system/calib/auto
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Enables an automatic instrument self calibration about 16 min after start up. In order to guarantee the full specification, it is recommended to perform a self calibration after warm-up of the device.
/dev..../system/calib/calibrate
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Initiates self calibration to improve input digitizer linearity.
/dev..../system/calib/next
Properties:
Read
Type:
Integer (64 bit)
Unit:
s
Remaining seconds until the first calibration is executed or a recalibration is requested.
/dev..../system/calib/required
Properties:
Read
Type:
Integer (enumerated)
Unit:
None
State of device self calibration.
0
Device is warmed-up and self calibrated.
1
It is recommended to manually execute a self calibration to assure operation according to specifications.
2
Device is warming up and will automatically execute a self calibration after 16 minutes.
/dev..../system/calib/tempthreshold
Properties:
Read, Write, Setting
Type:
Double
Unit:
°C
When the temperature changes by the specified amount, it is recommended to rerun the self calibration.
/dev..../system/calib/timeinterval
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
s
Time interval for which the self calibration is valid. After this time it is recommended to rerun the auto calibration.
/dev..../system/compdelay/calibrate
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Perform automatic calibration of the input delay compensation.
/dev..../system/compdelay/delays/n
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Current values of the compensation delays. 0: Signal Input 0, 1: Signal Input 1, 2: Aux Inputs, 3: Trigger Inputs, 4: Loopbacks
/dev..../system/extclk
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
10 MHz reference clock source.
0
"internal": Internal 10 MHz clock is used as the frequency and time base reference.
1
"external": An external 10 MHz clock is used as the frequency and time base reference. Provide a clean and stable 10 MHz reference to the appropriate back panel connector.
/dev..../system/fpgarevision
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
HDL firmware revision.
/dev..../system/fwlog
Properties:
Read
Type:
String
Unit:
None
Returns log output of the firmware.
/dev..../system/fwlogenable
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Enables logging to the fwlog node.
/dev..../system/fwrevision
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Revision of the device-internal controller software.
/dev..../system/fx2revision
Properties:
Read
Type:
String
Unit:
None
USB firmware revision.
/dev..../system/identify
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Setting this node to 1 will cause the device to blink the power led for a few seconds.
/dev..../system/interfacespeed
Properties:
Read
Type:
String
Unit:
None
Speed of the currently active interface (USB only).
/dev..../system/jumbo
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Enables jumbo frames (4k) on the TCP/IP interface. This will reduce the load on the PC and is required to achieve maximal throughput. Make sure that jumbo frames (4k) are enabled on the network card as well. If one of the devices on the network is not able to work with jumbo frames, the connection will fail.
/dev..../system/kerneltype
Properties:
Read
Type:
String
Unit:
None
Returns the type of the data server kernel (mdk or hpk).
/dev..../system/nics/n/defaultgateway
Properties:
Read, Write
Type:
String
Unit:
None
Default gateway configuration for the network connection.
/dev..../system/nics/n/defaultip4
Properties:
Read, Write
Type:
String
Unit:
None
IPv4 address of the device to use if static IP is enabled.
/dev..../system/nics/n/defaultmask
Properties:
Read, Write
Type:
String
Unit:
None
IPv4 mask in case of static IP.
/dev..../system/nics/n/gateway
Properties:
Read
Type:
String
Unit:
None
Current network gateway.
/dev..../system/nics/n/ip4
Properties:
Read
Type:
String
Unit:
None
Current IPv4 of the device.
/dev..../system/nics/n/jumbo
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Stored setting for jumbo frames. Will be applied after reboot.
/dev..../system/nics/n/mac
Properties:
Read
Type:
String
Unit:
None
Current MAC address of the device network interface.
/dev..../system/nics/n/mask
Properties:
Read
Type:
String
Unit:
None
Current network mask.
/dev..../system/nics/n/saveip
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
If written, this action will program the defined static IP address to the device.
/dev..../system/nics/n/static
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Enable this flag if the device is used in a network with fixed IP assignment without a DHCP server.
/dev..../system/owner
Properties:
Read
Type:
String
Unit:
None
Returns the current owner of the device (IP).
/dev..../system/porttcp
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Returns the current TCP port used for communication to the dataserver.
/dev..../system/portudp
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Returns the current UDP port used for communication to the dataserver.
/dev..../system/powerconfigdate
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Contains the date of power configuration (format is: (year << 16) | (month << 8) | day)
/dev..../system/preampenable
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Enables the preamplifier.
/dev..../system/preset/busy
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Indicates if presets are currently loaded.
/dev..../system/preset/default
Properties:
Read, Write
Type:
Integer (enumerated)
Unit:
None
Indicates the preset which is used as default preset at start-up of the device.
0
"factory": Select factory preset as default preset.
1
Select the preset stored in internal flash memory at position 1 as default preset.
2
Select the preset stored in internal flash memory at position 2 as default preset.
3
Select the preset stored in internal flash memory at position 3 as default preset.
4
Select the preset stored in internal flash memory at position 4 as default preset.
5
Select the preset stored in internal flash memory at position 5 as default preset.
6
Select the preset stored in internal flash memory at position 6 as default preset.
/dev..../system/preset/erase
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Erase the selected preset.
/dev..../system/preset/error
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Indicates if the last operation was illegal. Successful: 0, Error: 1.
/dev..../system/preset/index
Properties:
Read, Write
Type:
Integer (enumerated)
Unit:
None
Select between factory preset or presets stored in internal flash memory.
0
"factory": Select factory preset.
1
Select the preset stored in internal flash memory at position 1.
2
Select the preset stored in internal flash memory at position 2.
3
Select the preset stored in internal flash memory at position 3.
4
Select the preset stored in internal flash memory at position 4.
5
Select the preset stored in internal flash memory at position 5.
6
Select the preset stored in internal flash memory at position 6.
/dev..../system/preset/load
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Load the selected preset.
/dev..../system/preset/records/n/features
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Properties of the preset.
/dev..../system/preset/records/n/label
Properties:
Read, Write
Type:
String
Unit:
None
Name of this preset.
/dev..../system/preset/records/n/timestamp
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Not used.
/dev..../system/preset/records/n/valid
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
True if a valid preset is stored.
/dev..../system/preset/save
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Save the actual setting as preset.
/dev..../system/properties/freqresolution
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
The number of bits used to represent a frequency.
/dev..../system/properties/freqscaling
Properties:
Read
Type:
Double
Unit:
None
The scale factor to use to convert a frequency represented as a freqresolution-bit integer to a floating point value.
/dev..../system/properties/maxfreq
Properties:
Read
Type:
Double
Unit:
None
The maximum oscillator frequency that can be set.
/dev..../system/properties/maxtimeconstant
Properties:
Read
Type:
Double
Unit:
s
The maximum demodulator time constant that can be set. Only relevant for lock-in amplifiers.
/dev..../system/properties/minfreq
Properties:
Read
Type:
Double
Unit:
None
The minimum oscillator frequency that can be set.
/dev..../system/properties/mintimeconstant
Properties:
Read
Type:
Double
Unit:
s
The minimum demodulator time constant that can be set. Only relevant for lock-in amplifiers.
/dev..../system/properties/negativefreq
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Indicates whether negative frequencies are supported.
/dev..../system/properties/timebase
Properties:
Read
Type:
Double
Unit:
s
Minimal time difference between two timestamps. The value is equal to 1/(maximum sampling rate).
/dev..../system/saveports
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Flag indicating that the TCP and UDP ports should be saved.
/dev..../system/stall
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Indicates if the network connection is stalled.
/dev..../system/update
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Requests update of the device firmware and bitstream from the dataserver.
/dev..../system/xenpakenable
Properties:
Read
Type:
Integer (64 bit)
Unit:
None
Indicates whether the 10 gigabit ethernet option is installed and enabled.
TRIGGERS
/dev..../triggers/in/n/autothreshold
Properties:
Read, Write
Type:
Integer (64 bit)
Unit:
None
Automatically adjust the trigger threshold. The level is adjusted to fall in the center of the applied transitions.
/dev..../triggers/in/n/imp50
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
Trigger input impedance: When on, the trigger input impedance is 50 Ohm, when off 1 k Ohm.
/dev..../triggers/in/n/level
Properties:
Read, Write, Setting
Type:
Double
Unit:
V
Trigger voltage level at which the trigger input toggles between low and high. Use 50% amplitude for digital input and consider the trigger hysteresis.
/dev..../triggers/out/n/delay
Properties:
Read, Write, Setting
Type:
Double
Unit:
s
Trigger delay, controls the fine delay of the trigger output. The resolution is 78 ps.
/dev..../triggers/out/n/drive
Properties:
Read, Write, Setting
Type:
Integer (64 bit)
Unit:
None
When on, the bidirectional trigger on the front panel is in output mode. When off, the trigger is in input mode.
/dev..../triggers/out/n/pulsewidth
Properties:
Read, Write, Setting
Type:
Double
Unit:
s
Defines the minimal pulse width for the case of Scope and AWG Trigger/Active events written to the trigger outputs of the device.
/dev..../triggers/out/n/source
Properties:
Read, Write, Setting
Type:
Integer (enumerated)
Unit:
None
Select the signal assigned to the trigger output.
0
"disabled": The output trigger is disabled.
1
"demod3_phase": Oscillator phase of demod 4 (trigger output channel 1) or demod 8 (trigger output channel 2). Trigger event is output for each zero crossing of the oscillator phase.
2
"scope_trigger": Scope Trigger. Requires the DIG Option.
3
"scope_not_trigger": Scope /Trigger. Requires the DIG Option.
4
"scope_armed": Scope Armed. Requires the DIG Option.
5
"scope_not_armed": Scope /Armed. Requires the DIG Option.
6
"scope_active": Scope Active. Requires the DIG Option.
7
"scope_not_active": Scope /Active. Requires the DIG Option.
8
"awg_marker0": AWG Marker 1. Requires the AWG Option.
9
"awg_marker1": AWG Marker 2. Requires the AWG Option.
10
"awg_marker2": AWG Marker 3. Requires the AWG Option.
11
"awg_marker3": AWG Marker 4. Requires the AWG Option.
20
"awg_active": AWG Active. Requires the AWG Option.
21
"awg_waiting": AWG Waiting. Requires the AWG Option.
22
"awg_fetching": AWG Fetching. Requires the AWG Option.
23
"awg_playing": AWG Playing. Requires the AWG Option.
32
"awg_trigger0": AWG Trigger 1. Requires the AWG Option.
33
"awg_trigger1": AWG Trigger 2. Requires the AWG Option.
34
"awg_trigger2": AWG Trigger 3. Requires the AWG Option.
35
"awg_trigger3": AWG Trigger 4. Requires the AWG Option.
51
"mds_clock_out": MDS Clock Out.
52
"mds_sync_out": MDS Sync Out.