Rx

SCPI Command :

[CONFigure]:TENVironment:SPATh:CTABle:RX
class RxCls[source]

Rx commands group definition. 1 total commands, 0 Subgroups, 1 group commands

get(name_signal_path: str) List[str][source]
# SCPI: [CONFigure]:TENVironment:SPATh:CTABle:RX
value: List[str] = driver.configure.tenvironment.spath.correctionTable.rx.get(name_signal_path = 'abc')

Assigns one or more correction tables to the TX direction or RX direction of a connection. If there is an existing assignment, it is overwritten. The directions refer to the instrument (TX/RX of the instrument) .

param name_signal_path:

Name of the connection

return:

correction_table: The name of the correction table to be assigned. At least one name of a correction table. To assign several tables, use a comma-separated list of strings.

set(name_signal_path: str, correction_table: List[str]) None[source]
# SCPI: [CONFigure]:TENVironment:SPATh:CTABle:RX
driver.configure.tenvironment.spath.correctionTable.rx.set(name_signal_path = 'abc', correction_table = ['abc1', 'abc2', 'abc3'])

Assigns one or more correction tables to the TX direction or RX direction of a connection. If there is an existing assignment, it is overwritten. The directions refer to the instrument (TX/RX of the instrument) .

param name_signal_path:

Name of the connection

param correction_table:

The name of the correction table to be assigned. At least one name of a correction table. To assign several tables, use a comma-separated list of strings.