DedBearer

SCPI Commands :

PREPare:LTE:SIGNaling<instance>:CONNection:DEDBearer:SEParate
PREPare:LTE:SIGNaling<instance>:CONNection:DEDBearer
class DedBearerCls[source]

DedBearer commands group definition. 2 total commands, 0 Subgroups, 2 group commands

class DedBearerStruct[source]

Response structure. Fields:

  • Def_Bearer_Id: str: string Bearer ID, selecting the default bearer, to which the dedicated bearer is mapped. Example: ‘5 (cmw500.rohde-schwarz.com) ‘ To query a list of IDs for all established default bearers, see [CMDLINKRESOLVED Catalog.Connection#DefBearer CMDLINKRESOLVED].

  • Profile: enums.DedBearerProfile: VOICe | VIDeo | DRAM | DRUM Selects a dedicated bearer profile VOICe: for voice connections VIDeo: for video connections DRAM: for data connections with RLC acknowledged mode DRUM: for data connections with RLC unacknowledged mode

  • Tft_Port_Low: int: numeric Selects the lower end of the port range, for which traffic is routed to the dedicated bearer Range: 1 to 65535

  • Tft_Port_High: int: numeric Selects the upper end of the port range Range: 1 to 65535

class SeparateStruct[source]

Structure for setting input parameters. Fields:

  • Def_Bearer_Id: str: string Bearer ID, selecting the default bearer, to which the dedicated bearer is mapped. Example: ‘5 (cmw500.rohde-schwarz.com) ‘ To query a list of IDs for all established default bearers, see [CMDLINKRESOLVED Catalog.Connection#DefBearer CMDLINKRESOLVED].

  • Profile: enums.DedBearerProfile: VOICe | VIDeo | DRAM | DRUM Selects a dedicated bearer profile VOICe: for voice connections VIDeo: for video connections DRAM: for data connections with RLC acknowledged mode DRUM: for data connections with RLC unacknowledged mode Range: DRUM

  • Tft_Port_Low_Dl: int: numeric Selects the lower end of the port range for downlink traffic Range: 1 to 65535

  • Tft_Port_High_Dl: int: numeric Selects the upper end of the port range for downlink traffic Range: 1 to 65535

  • Tft_Port_Low_Ul: int: numeric Selects the lower end of the port range for uplink traffic Range: 1 to 65535

  • Tft_Port_High_Ul: int: numeric Selects the upper end of the port range for uplink traffic Range: 1 to 65535

get() DedBearerStruct[source]
# SCPI: PREPare:LTE:SIGNaling<instance>:CONNection:DEDBearer
value: DedBearerStruct = driver.prepare.connection.dedBearer.get()

Configures dedicated bearer settings as a preparation for a bearer setup via CALL:LTE:SIGN:PSWitched:ACTion CONNect. The same port range is used for the uplink and for the downlink.

return:

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

get_separate() SeparateStruct[source]
# SCPI: PREPare:LTE:SIGNaling<instance>:CONNection:DEDBearer:SEParate
value: SeparateStruct = driver.prepare.connection.dedBearer.get_separate()

Configures dedicated bearer settings as a preparation for a bearer setup via CALL:LTE:SIGN:PSWitched:ACTion CONNect. Different port ranges can be set for the uplink and for the downlink.

return:

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

set(def_bearer_id: str, profile: DedBearerProfile, tft_port_low: int, tft_port_high: int) None[source]
# SCPI: PREPare:LTE:SIGNaling<instance>:CONNection:DEDBearer
driver.prepare.connection.dedBearer.set(def_bearer_id = 'abc', profile = enums.DedBearerProfile.DRAM, tft_port_low = 1, tft_port_high = 1)

Configures dedicated bearer settings as a preparation for a bearer setup via CALL:LTE:SIGN:PSWitched:ACTion CONNect. The same port range is used for the uplink and for the downlink.

param def_bearer_id:

string Bearer ID, selecting the default bearer, to which the dedicated bearer is mapped. Example: ‘5 (cmw500.rohde-schwarz.com) ‘ To query a list of IDs for all established default bearers, see method RsCmwLteSig.Catalog.Connection.defBearer.

param profile:

VOICe | VIDeo | DRAM | DRUM Selects a dedicated bearer profile VOICe: for voice connections VIDeo: for video connections DRAM: for data connections with RLC acknowledged mode DRUM: for data connections with RLC unacknowledged mode

param tft_port_low:

numeric Selects the lower end of the port range, for which traffic is routed to the dedicated bearer Range: 1 to 65535

param tft_port_high:

numeric Selects the upper end of the port range Range: 1 to 65535

set_separate(value: SeparateStruct) None[source]
# SCPI: PREPare:LTE:SIGNaling<instance>:CONNection:DEDBearer:SEParate
structure = driver.prepare.connection.dedBearer.SeparateStruct()
structure.Def_Bearer_Id: str = 'abc'
structure.Profile: enums.DedBearerProfile = enums.DedBearerProfile.DRAM
structure.Tft_Port_Low_Dl: int = 1
structure.Tft_Port_High_Dl: int = 1
structure.Tft_Port_Low_Ul: int = 1
structure.Tft_Port_High_Ul: int = 1
driver.prepare.connection.dedBearer.set_separate(value = structure)

Configures dedicated bearer settings as a preparation for a bearer setup via CALL:LTE:SIGN:PSWitched:ACTion CONNect. Different port ranges can be set for the uplink and for the downlink.

param value:

see the help for SeparateStruct structure arguments.