Emtc

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>[:PCC]:EMTC:ENABle
CONFigure:LTE:SIGNaling<instance>[:PCC]:EMTC:MB<number>
class EmtcCls[source]

Emtc commands group definition. 33 total commands, 6 Subgroups, 2 group commands

get_enable() bool[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>[:PCC]:EMTC:ENABle
value: bool = driver.configure.pcc.emtc.get_enable()

Enables or disables eMTC.

return:

enable: OFF | ON

get_mb() bool[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>[:PCC]:EMTC:MB<number>
value: bool = driver.configure.pcc.emtc.get_mb()

Selects the maximum bandwidth for an eMTC connection.

return:

enable: OFF | ON OFF: Max bandwidth 1.4 MHz ON: Max bandwidth 5 MHz

set_enable(enable: bool) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>[:PCC]:EMTC:ENABle
driver.configure.pcc.emtc.set_enable(enable = False)

Enables or disables eMTC.

param enable:

OFF | ON

set_mb(enable: bool) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>[:PCC]:EMTC:MB<number>
driver.configure.pcc.emtc.set_mb(enable = False)

Selects the maximum bandwidth for an eMTC connection.

param enable:

OFF | ON OFF: Max bandwidth 1.4 MHz ON: Max bandwidth 5 MHz

Cloning the Group

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

Subgroups