Config
SCPI Command :
CHANnel<*>:EFRontend:CONNection:CONFig
- Commands in total: 1Subgroups: 0Direct child commands: 1
- class ConfigStruct[source]
Response structure. Fields:
1 Type_Py: str: String with the type of the connected frontend. For a list of available type strings, use method
RsRtx.channel.efrontend.typePy.listPy.get().2 Ip_Address_Or_Name: str: String with the IP address or host name of the connected frontend.
3 Identifier: str: IDN string of the connected frontend
- get(channel=Channel.Default) ConfigStruct[source]
# CHANnel<*>:EFRontend:CONNection:CONFig value: ConfigStruct = driver.channel.efrontend.connection.config.get(channel = repcap.Channel.Default)
Defines the connection of the indicated frontend: type of the frontend and the IP address or host name. Optionally, the identifier string can be used.
- Parameters:
channel – optional repeated capability selector. Default value: Ch1 (settable in the interface ‘Channel’)
- Returns:
structure: for return value, see the help for ConfigStruct structure arguments.
- set(type_py: str, ip_address_or_name: str, identifier: str = None, channel=Channel.Default) None[source]
# CHANnel<*>:EFRontend:CONNection:CONFig driver.channel.efrontend.connection.config.set(type_py = 'abc', ip_address_or_name = 'abc', identifier = 'abc', channel = repcap.Channel.Default)
Defines the connection of the indicated frontend: type of the frontend and the IP address or host name. Optionally, the identifier string can be used.
- Parameters:
type_py – String with the type of the connected frontend. For a list of available type strings, use method
RsRtx.channel.efrontend.typePy.listPy.get().ip_address_or_name – String with the IP address or host name of the connected frontend.
identifier – IDN string of the connected frontend
channel – optional repeated capability selector. Default value: Ch1 (settable in the interface ‘Channel’)