Stype

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:STYPe
class StypeCls[source]

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

class StypeStruct[source]

Response structure. Fields:

  • Type_Py: enums.SchedulingType: RMC | UDCHannels | UDTTibased | CQI | SPS | EMAMode | EMCSched RMC: 3GPP-compliant reference measurement channel UDCHannels: user-defined channel UDTTibased: user-defined channel configurable per TTI CQI: CQI channel, as specified by next parameter SPS: semi-persistent scheduling (only PCC, not SCC) EMAMode: eMTC auto mode EMCSched: eMTC compact scheduling

  • Cqi_Mode: enums.CqiMode: TTIBased | FWB | FPMI | FCPRi | FCRI | FPRI Only relevant for Type = CQI TTIBased: fixed CQI FWB: follow wideband CQI FPMI: follow wideband PMI FCPRi: follow wideband CQI-PMI-RI FCRI: follow wideband CQI-RI FPRI: follow wideband PMI-RI

get() StypeStruct[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:STYPe
value: StypeStruct = driver.configure.connection.pcc.stype.get()

Selects the scheduling type.

return:

structure: for return value, see the help for StypeStruct structure arguments.

set(type_py: SchedulingType, cqi_mode: CqiMode = None) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:STYPe
driver.configure.connection.pcc.stype.set(type_py = enums.SchedulingType.CQI, cqi_mode = enums.CqiMode.FCPRi)

Selects the scheduling type.

param type_py:

RMC | UDCHannels | UDTTibased | CQI | SPS | EMAMode | EMCSched RMC: 3GPP-compliant reference measurement channel UDCHannels: user-defined channel UDTTibased: user-defined channel configurable per TTI CQI: CQI channel, as specified by next parameter SPS: semi-persistent scheduling (only PCC, not SCC) EMAMode: eMTC auto mode EMCSched: eMTC compact scheduling

param cqi_mode:

TTIBased | FWB | FPMI | FCPRi | FCRI | FPRI Only relevant for Type = CQI TTIBased: fixed CQI FWB: follow wideband CQI FPMI: follow wideband PMI FCPRi: follow wideband CQI-PMI-RI FCRI: follow wideband CQI-RI FPRI: follow wideband PMI-RI