Write/Read
Configuring the analyzer for SICL/VISA

SICL Property


Description

Allows you to control the PNA via SICL (standard instrument control library).  In this mode, the analyzer can receive SCPI commands from the LAN interface or from a program residing on the PNA itself. This command performs the same function as the SICL / GPIB dialog box - SICL Enabled checkbox. See Configuring the analyzer for SICL/VISA.

When SICL is enabled, the PNA VXI-11.2 interface is enabled, and if the PNA hard disk image is new enough to have the VXI-11.3 interface, it also enables that. Learn more about LXI / VXI.

With this method you can augment a test program written using SICL that resides on the PNA so that it will run unattended.   An automation script can be written to start the PNA, enable SICL (using the SICL property), and then start the SICL based program.

 VB Syntax

app.SICL value

Variable

(Type) - Description

app

An Application (object)

value

(Boolean) Choose from:

True - enable SICL

False - disable SICL

Return Type

Boolean

Default

False

Examples

Dim Pna as AgilentPNA835x.Application
Dim siclState as Boolean
Set Pna = CreateObject(“AgilentPNA835x.Application”)
Pna.SICL = true          
‘write

siclState = Pna.SICL      'Read

C++ Syntax

HRESULT get_SICL(VARIANT_BOOL *pVal)

HRESULT put_SICL(VARIANT_BOOL newVal)

Interface

IApplication5