Configure

SCPI Commands :

CONFigure:LTE:MEASurement<Instance>:BAND
CONFigure:LTE:MEASurement<Instance>:SPATh
CONFigure:LTE:MEASurement<Instance>:STYPe
CONFigure:LTE:MEASurement<Instance>:DMODe
CONFigure:LTE:MEASurement<Instance>:FSTRucture
class ConfigureCls[source]

Configure commands group definition. 209 total commands, 9 Subgroups, 5 group commands

get_band() Band[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:BAND
value: enums.Band = driver.configure.get_band()
Selects the operating band (OB) .

INTRO_CMD_HELP: The allowed input range has dependencies:

  • FDD UL: OB1 | … | OB28 | OB30 | OB31 | OB65 | OB66 | OB68 | OB70 | … | OB74 | OB85 | OB87 | OB88

  • TDD UL: OB33 | … | OB45 | OB48 | OB50 | … | OB53 | OB250

  • Sidelink: OB47

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:LTE:SIGN<i>[:PCC]:BAND

  • CONFigure:LTE:SIGN<i>:SCC<c>:BAND

return:

band: OB1 to OB250, see list above

get_dmode() DuplexMode[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:DMODe
value: enums.DuplexMode = driver.configure.get_dmode()
Selects the duplex mode of the LTE signal: FDD or TDD.

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:LTE:SIGN<i>[:PCC]:DMODe

  • CONFigure:LTE:SIGN<i>:SCC<c>:DMODe

  • CONFigure:LTE:SIGN<i>[:PCC]:DMODe:UCSPecific

return:

mode: FDD | TDD

get_fstructure() FrameStructure[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:FSTRucture
value: enums.FrameStructure = driver.configure.get_fstructure()

Queries the frame structure type of the LTE signal. The value depends on the duplex mode (method RsCmwLteMeas.Configure. dmode) .

return:

frame_structure: T1 | T2 T1: Type 1, FDD signal T2: Type 2, TDD signal

get_spath() Path[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:SPATh
value: enums.Path = driver.configure.get_spath()

No command help available

return:

path: No help available

get_stype() SignalType[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:STYPe
value: enums.SignalType = driver.configure.get_stype()

Selects the type of the measured signal.

return:

signal_type: UL | SL UL: LTE uplink signal with PUSCH or PUCCH SL: V2X sidelink signal with PSSCH and PSCCH

set_band(band: Band) None[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:BAND
driver.configure.set_band(band = enums.Band.OB1)
Selects the operating band (OB) .

INTRO_CMD_HELP: The allowed input range has dependencies:

  • FDD UL: OB1 | … | OB28 | OB30 | OB31 | OB65 | OB66 | OB68 | OB70 | … | OB74 | OB85 | OB87 | OB88

  • TDD UL: OB33 | … | OB45 | OB48 | OB50 | … | OB53 | OB250

  • Sidelink: OB47

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:LTE:SIGN<i>[:PCC]:BAND

  • CONFigure:LTE:SIGN<i>:SCC<c>:BAND

param band:

OB1 to OB250, see list above

set_dmode(mode: DuplexMode) None[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:DMODe
driver.configure.set_dmode(mode = enums.DuplexMode.FDD)
Selects the duplex mode of the LTE signal: FDD or TDD.

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:LTE:SIGN<i>[:PCC]:DMODe

  • CONFigure:LTE:SIGN<i>:SCC<c>:DMODe

  • CONFigure:LTE:SIGN<i>[:PCC]:DMODe:UCSPecific

param mode:

FDD | TDD

set_spath(path: Path) None[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:SPATh
driver.configure.set_spath(path = enums.Path.NETWork)

No command help available

param path:

No help available

set_stype(signal_type: SignalType) None[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:STYPe
driver.configure.set_stype(signal_type = enums.SignalType.SL)

Selects the type of the measured signal.

param signal_type:

UL | SL UL: LTE uplink signal with PUSCH or PUCCH SL: V2X sidelink signal with PSSCH and PSCCH

Cloning the Group

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

Subgroups