FreqCorrection

SCPI Commands :

CONFigure:BASE:FDCorrection:SAV
CONFigure:BASE:FDCorrection:RCL
CONFigure:FDCorrection:DEACtivate
CONFigure:FDCorrection:DEACtivate:ALL
class FreqCorrectionCls[source]

FreqCorrection commands group definition. 16 total commands, 3 Subgroups, 4 group commands

deactivate(connector: str, direction: RxTxDirection = None, rf_converter: RfConverterInPath = None) None[source]
# SCPI: CONFigure:FDCorrection:DEACtivate
driver.configure.freqCorrection.deactivate(connector = rawAbc, direction = enums.RxTxDirection.RX, rf_converter = enums.RfConverterInPath.RF1)

Deactivates any correction tables for a specific RF connector or a specific connector / converter combination. For bidirectional connectors, the tables can be deactivated for both directions or for one direction.

param connector:

Selects a single RF connector For possible connector values, see ‘Values for RF path selection’.

param direction:

RXTX | RX | TX Specifies the direction for which the tables are deactivated. RX means input and TX means output. For a pure output connector, RX is ignored. RXTX: both directions (for output connector same effect as TX) RX: input (not allowed for output connector) TX: output Default: RXTX

param rf_converter:

RF1 | RF2 | RF3 | RF4 RX and TX module in the path (RFn = RXn, TXn)

deactivate_all(direction: RxTxDirection = None, table_path: str = None) None[source]
# SCPI: CONFigure:FDCorrection:DEACtivate:ALL
driver.configure.freqCorrection.deactivate_all(direction = enums.RxTxDirection.RX, table_path = rawAbc)

Deactivates all correction tables for all RF connectors of a selected subinstrument. For bidirectional connectors, the tables can be deactivated for both directions or for one direction.

param direction:

RXTX | RX | TX Specifies the direction for which the tables are deactivated. RX means input and TX means output. For a pure output connector, RX is ignored. RXTX: both directions (for output connector same effect as TX) RX: input (not allowed for output connector) TX: output Default: RXTX

param table_path:

string Selects the subinstrument If omitted: subinstrument addressed by the remote channel. ‘instn’: subinstrument n+1

recall(table_path: str = None) None[source]
# SCPI: CONFigure:BASE:FDCorrection:RCL
driver.configure.freqCorrection.recall(table_path = rawAbc)

Loads all correction tables for a selected subinstrument from the system drive into the RAM. This action is performed automatically when the R&S CMW application software is started. However, you can use the command to retrieve the correction tables after the disk contents have been modified. Or you can use it to undo changes and fall back to the tables stored on the system drive.

param table_path:

string Selects the subinstrument If omitted: subinstrument addressed by the remote channel. ‘instn’: subinstrument n+1

save(table_path: str = None) None[source]
# SCPI: CONFigure:BASE:FDCorrection:SAV
driver.configure.freqCorrection.save(table_path = rawAbc)

Saves the correction tables for a selected subinstrument from the RAM to the system drive. This action is performed automatically when the R&S CMW application software is closed, for example, by pressing the standby key. However, you can use the command to save your work manually after creating or configuring correction tables.

param table_path:

string Selects the subinstrument If omitted: subinstrument addressed by the remote channel. ‘instn’: subinstrument n+1

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.freqCorrection.clone()

Subgroups