Network Operation and Remote Control
R&S
®
SMW200A
740User Manual 1175.6632.02 ─ 16
3. Observe the screen.
A response on the query confirms that the connection is working. The client dis-
plays all subsequent inputs and responses.
4. Even if the cursor is not visible on the screen, enter blind a remote-control com-
mand and confirm with Enter.
12.8.4 Setting Up a Remote Control Connection over GPIB
The program example in this section is written in VISUAL BASIC. A condition for pro-
gramming in VISUAL BASIC is that the modules NIGLOBAL (Niglobal.bas) and
VBIB32 (Vbib_32.bas) are added to the projects.
Drivers for instrument, for example IVI-COM and LabVIEW drivers, are available for
download area on the product page at:
https://www.rohde-schwarz.com/driver/smw200a/
Starting a remote control session over GPIB
As a prerequisite, the GPIB address of the instrument, which is factory-set to 28, must
not have been changed.
1. Connect instrument and controller using GPIB cable and switch them on.
2. Execute the following commands on the controller:
a) Open the port to the instrument.
CALL IBFIND("DEV1", generator%)
b) Inform the controller about instrument address.
CALL IBPAD(generator%, 28)
c) Reset the instrument.
CALL IBWRT(generator%, "*RST;*CLS")
d) Set the instrument to new address.
CALL IBWRT(generator%, "SYST:COMM:GPIB:ADDR 18")
e) Inform the controller about new address.
CALL IBPAD(generator%, 18)
The GPIB address of the instrument is changed.
3. To return to manual operation, press the LOCAL key at the front panel.
How to Set Up a Remote Control Connection