Rohc

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:CONNection:PACKet:ROHC:ENABle
CONFigure:WCDMa:SIGNaling<Instance>:CONNection:PACKet:ROHC:PROFiles
class Rohc[source]

Rohc commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

class ProfilesStruct[source]

Structure for reading output parameters. Fields:

  • Profiles_0_X_001: bool: OFF | ON IP/UDP/RTP

  • Profiles_0_X_002: bool: OFF | ON IP/UDP

  • Profiles_0_X_004: bool: OFF | ON IP

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

Enables or disables robust header compression for PS connections.

return

enable: OFF | ON

get_profiles()ProfilesStruct[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CONNection:PACKet:ROHC:PROFiles
value: ProfilesStruct = driver.configure.connection.packet.rohc.get_profiles()

Defines which profiles are allowed to be used by the UE in uplink.

return

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

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

Enables or disables robust header compression for PS connections.

param enable

OFF | ON

set_profiles(value: RsCmwWcdmaSig.Implementations.Configure_.Connection_.Packet_.Rohc.Rohc.ProfilesStruct)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CONNection:PACKet:ROHC:PROFiles
driver.configure.connection.packet.rohc.set_profiles(value = ProfilesStruct())

Defines which profiles are allowed to be used by the UE in uplink.

param value

see the help for ProfilesStruct structure arguments.