Network operation and remote control
R&S
®
SMM100A
650
User Manual 1179.1341.02 ─ 05
For information about the LXI standard, refer to the LXI website at
See also "News from Rohde & Schwarz, article 2006/II - 190".
The LXI functionality in the R&S
SMM100A is characterized by a common LAN imple-
mentation, including an ICMP ping responder for diagnostics. Using a web browser,
you can configure the instrument. A LAN Configuration Initialize (LCI) mechanism
resets the LAN configuration. The instrument also supports automatic detection in a
LAN via the VXI-11 discovery protocol and programming by IVI drivers.
In addition, the R&S
SMM100A provides the following LXI-related functionality:
●
Integrated "LXI Status" dialog for LXI status indication and reset of the LAN config-
uration, see
Chapter 12.6.1, "LXI status settings"
●
"LXI Browser Interface", as described in
Chapter 12.6.2.1, "LAN configuration"
●
"SCPI Remote Trace" utility, see
Chapter 12.6.2.2, "SCPI remote trace"
Firmware update
To enable the full LXI functionality after a firmware update, shut down and restart the
instrument.
12.11.2
Code generator templates
This section describes the main structure of the code generator templates, and shows
the method with the NICVI template.
The code generation is controlled by templates with the following blocks:
Command
Function
#EXTENSION_START
#EXTENSION_END
Defines the output file extension.
#INIT_CODE_START
#INIT_CODE_END
Contains initial entries, such as included files and
libraries, buffer size, commands for synchronization,
or creating a VISA session.
All entries between start and end are written once at
the beginning of the output file.
#COMMAND_CODE_START
#COMMAND_CODE_END
Frame for a SCPI command. A command is
accessed with
%COMMAND
.
#NO_COMMAND_CODE_START
#NO_COMMAND_CODE_END
Frame for a parameter with no SCPI command
available. A parameter is accessed with
%PARAMETER
.
#EXIT_CODE_START
#EXIT_CODE_END
Closes the visa session.
All entries between start and end are written once at
the end of the output file.
References