McsTable

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:FCRI:DL:MCSTable:UDEFined
class McsTableCls[source]

McsTable commands group definition. 2 total commands, 1 Subgroups, 1 group commands

get_user_defined() List[int][source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:FCRI:DL:MCSTable:UDEFined
value: List[int] = driver.configure.connection.pcc.fcri.downlink.mcsTable.get_user_defined()

Configures a user-defined mapping table that assigns an MCS index value to each possible reported wideband CQI index value. The table is used for the scheduling type ‘Follow WB CQI-RI’ if the table mode is set to UDEFined.

return:

mcs: numeric Comma-separated list of 15 MCS values, for reported CQI index value 1 to 15 The range is restricted by the highest allowed modulation scheme: max 27 with 256-QAM, max 26 with 1024-QAM. Range: 0 to 28

set_user_defined(mcs: List[int]) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:FCRI:DL:MCSTable:UDEFined
driver.configure.connection.pcc.fcri.downlink.mcsTable.set_user_defined(mcs = [1, 2, 3])

Configures a user-defined mapping table that assigns an MCS index value to each possible reported wideband CQI index value. The table is used for the scheduling type ‘Follow WB CQI-RI’ if the table mode is set to UDEFined.

param mcs:

numeric Comma-separated list of 15 MCS values, for reported CQI index value 1 to 15 The range is restricted by the highest allowed modulation scheme: max 27 with 256-QAM, max 26 with 1024-QAM. Range: 0 to 28

Cloning the Group

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

Subgroups