Enable

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:CONNection:SCC<Carrier>:SCHModel:ENABle
class EnableCls[source]

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

get(secondaryCompCarrier=SecondaryCompCarrier.Default) bool[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:SCC<Carrier>:SCHModel:ENABle
value: bool = driver.configure.connection.scc.schModel.enable.get(secondaryCompCarrier = repcap.SecondaryCompCarrier.Default)

Enables or disables the MIMO 2x2 static channel matrix. Disabling the channel matrix results in an ideal radio channel without any coupling between the downlink signals.

param secondaryCompCarrier:

optional repeated capability selector. Default value: CC1 (settable in the interface ‘Scc’)

return:

enable: OFF | ON

set(enable: bool, secondaryCompCarrier=SecondaryCompCarrier.Default) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:SCC<Carrier>:SCHModel:ENABle
driver.configure.connection.scc.schModel.enable.set(enable = False, secondaryCompCarrier = repcap.SecondaryCompCarrier.Default)

Enables or disables the MIMO 2x2 static channel matrix. Disabling the channel matrix results in an ideal radio channel without any coupling between the downlink signals.

param enable:

OFF | ON

param secondaryCompCarrier:

optional repeated capability selector. Default value: CC1 (settable in the interface ‘Scc’)

Cloning the Group

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

Subgroups