Rohc

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>:CONNection:ROHC:EFOR
CONFigure:LTE:SIGNaling<instance>:CONNection:ROHC:ENABle
class RohcCls[source]

Rohc commands group definition. 5 total commands, 2 Subgroups, 2 group commands

get_efor() HeaderCompression[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:ROHC:EFOR
value: enums.HeaderCompression = driver.configure.connection.rohc.get_efor()

Selects for which types of dedicated bearers header compression is enabled.

return:

for_py: VVB | ADB VVB: voice and video bearers ADB: all dedicated bearers

get_enable() bool[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:ROHC:ENABle
value: bool = driver.configure.connection.rohc.get_enable()

Enables or disables bidirectional header compression.

return:

enable: OFF | ON

set_efor(for_py: HeaderCompression) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:ROHC:EFOR
driver.configure.connection.rohc.set_efor(for_py = enums.HeaderCompression.ADB)

Selects for which types of dedicated bearers header compression is enabled.

param for_py:

VVB | ADB VVB: voice and video bearers ADB: all dedicated bearers

set_enable(enable: bool) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:ROHC:ENABle
driver.configure.connection.rohc.set_enable(enable = False)

Enables or disables bidirectional header compression.

param enable:

OFF | ON

Cloning the Group

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

Subgroups