Tmode

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:CONNection:TMODe:KTLReconfig
CONFigure:WCDMa:SIGNaling<Instance>:CONNection:TMODe:TYPE
class Tmode[source]

Tmode commands group definition. 15 total commands, 3 Sub-groups, 2 group commands

get_ktlre_config()bool[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CONNection:TMODe:KTLReconfig
value: bool = driver.configure.connection.tmode.get_ktlre_config()

Specifies whether the test loop is kept closed when the operating band or the carrier frequency is reconfigured during an established test mode connection with test loop.

return

enable: OFF | ON ON: keep test loop closed OFF: open test loop, perform reconfiguration, close test loop

get_type_py()RsCmwWcdmaSig.enums.TestModeType[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CONNection:TMODe:TYPE
value: enums.TestModeType = driver.configure.connection.tmode.get_type_py()

Selects the test mode connection type.

return

type_py: RMC | HSPA | RHSPa | FACH | BTFD RMC: RMC in CS or PS domain HSPA: HSPA in PS domain RHSPa: RMC plus HSPA FACH: test using CELL_FACH state in CS domain BTFD: test using blind transport format detection

set_ktlre_config(enable: bool)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CONNection:TMODe:KTLReconfig
driver.configure.connection.tmode.set_ktlre_config(enable = False)

Specifies whether the test loop is kept closed when the operating band or the carrier frequency is reconfigured during an established test mode connection with test loop.

param enable

OFF | ON ON: keep test loop closed OFF: open test loop, perform reconfiguration, close test loop

set_type_py(type_py: RsCmwWcdmaSig.enums.TestModeType)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CONNection:TMODe:TYPE
driver.configure.connection.tmode.set_type_py(type_py = enums.TestModeType.BTFD)

Selects the test mode connection type.

param type_py

RMC | HSPA | RHSPa | FACH | BTFD RMC: RMC in CS or PS domain HSPA: HSPA in PS domain RHSPa: RMC plus HSPA FACH: test using CELL_FACH state in CS domain BTFD: test using blind transport format detection

Cloning the Group

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

Subgroups