Series 3700 System Switch/Multimeter Reference Manual
Section 9
:
Instrument Control Library (ICL)
Document Number: 3700S-901-01 Rev. A / August 2007
9-143
lan.status.reset
Example
To reset the LAN interface:
lan.status.reset()
lan.status.speed
Attribute
Reads present LAN speed.
Usage
speed = lan.status.speed
speed: LAN speed
given in Mbps. It will be either 10 or 100.
Remarks
This attribute indicates the transmission speed currently in use by the LAN interface.
Example
To display the Series 3700 transmission speed presently in use:
print(lan.status.speed)
1.000002
lan.status.subnetmask
Attribute
Reads present LAN subnet mask.
Usage
mask = lan.status.subnetmask
mask:
A string specifying the subnet mask in dotted decimal notation.
Remarks
This attribute indicates the LAN subnet mask currently in use.
Example
To display the Series 3700 subnet mask presently in use:
print(lan.status.subnetmask)
255.255.255.0
lan.trigger[N].assert
Function
Simulates the occurrence of the trigger and generates the corresponding event id.
Usage
lan.trigger[N].assert()
N
: The trigger packet over LAN to assert (1
–8).
Remarks
This function will generate a trigger for the specified LAN packet.
Also see
tsplink.trigger[N].clear
(on page 9-212)
tsplink.trigger[N].mode
(on page 9-212)
tsplink.trigger[N].overrun
(on page 9-213)
tsplink.trigger[N].release
(on page 9-214)
tsplink.trigger[N].triggersource
(see "tsplink.trigger[N].triggerstimulus" on page 9-214)
tsplink.trigger[N].wait
(on page 9-214)
Example
To create a trigger with LAN packet 5:
lan.trigger[5].assert()