Dmode

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>[:PCC]:DMODe:UCSPecific
CONFigure:LTE:SIGNaling<instance>[:PCC]:DMODe
class DmodeCls[source]

Dmode commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_uc_specific() bool[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>[:PCC]:DMODe:UCSPecific
value: bool = driver.configure.pcc.dmode.get_uc_specific()


    INTRO_CMD_HELP: Enables the carrier-specific duplex mode configuration.

    - Enabled - The duplex mode is configured per carrier via: method RsCmwLteSig.Configure.Pcc.Dmode.value method RsCmwLteSig.Configure.Scc.Dmode.set
    - Disabled - All carriers have the same duplex mode, configured via: method RsCmwLteSig.Configure.Pcc.Dmode.value

    :return: enable: OFF | ON
get_value() DuplexMode[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>[:PCC]:DMODe
value: enums.DuplexMode = driver.configure.pcc.dmode.get_value()

Selects the duplex mode of the LTE signal: FDD or TDD. See also method RsCmwLteSig.Configure.Pcc.Dmode.ucSpecific.

return:

mode: FDD | TDD

set_uc_specific(enable: bool) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>[:PCC]:DMODe:UCSPecific
driver.configure.pcc.dmode.set_uc_specific(enable = False)


    INTRO_CMD_HELP: Enables the carrier-specific duplex mode configuration.

    - Enabled - The duplex mode is configured per carrier via: method RsCmwLteSig.Configure.Pcc.Dmode.value method RsCmwLteSig.Configure.Scc.Dmode.set
    - Disabled - All carriers have the same duplex mode, configured via: method RsCmwLteSig.Configure.Pcc.Dmode.value

    :param enable: OFF | ON
set_value(mode: DuplexMode) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>[:PCC]:DMODe
driver.configure.pcc.dmode.set_value(mode = enums.DuplexMode.FDD)

Selects the duplex mode of the LTE signal: FDD or TDD. See also method RsCmwLteSig.Configure.Pcc.Dmode.ucSpecific.

param mode:

FDD | TDD