DedBearer

SCPI Commands :

SENSe:LTE:SIGNaling<instance>:UESinfo:UEADdress:DEDBearer:SEParate
SENSe:LTE:SIGNaling<instance>:UESinfo:UEADdress:DEDBearer
class DedBearerCls[source]

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

class SeparateStruct[source]

Structure for reading output parameters. Fields:

  • Idn: List[str]: string Dedicated bearer ID Example: ‘6 (-5, Voice) ‘ means dedicated bearer 6, mapped to default bearer 5, using dedicated bearer profile ‘Voice’

  • Tft_Port_Low_Dl: List[int]: decimal Lower end of TFT port range assigned to the downlink Range: 1 to 65535

  • Tft_Port_High_Dl: List[int]: decimal Upper end of TFT port range assigned to the downlink Range: 1 to 65535

  • Tft_Port_Low_Ul: List[int]: decimal Lower end of TFT port range assigned to the uplink Range: 1 to 65535

  • Tft_Port_High_Ul: List[int]: decimal Upper end of TFT port range assigned to the uplink Range: 1 to 65535

class ValueStruct[source]

Structure for reading output parameters. Fields:

  • Idn: List[str]: string Dedicated bearer ID Example: ‘6 (-5, Voice) ‘ means dedicated bearer 6, mapped to default bearer 5, using dedicated bearer profile ‘Voice’

  • Tft_Port_Low: List[int]: decimal Lower end of TFT port range assigned to the dedicated bearer Range: 1 to 65535

  • Tft_Port_High: List[int]: decimal Upper end of TFT port range assigned to the dedicated bearer Range: 1 to 65535

get_separate() SeparateStruct[source]
# SCPI: SENSe:LTE:SIGNaling<instance>:UESinfo:UEADdress:DEDBearer:SEParate
value: SeparateStruct = driver.sense.uesInfo.ueAddress.dedBearer.get_separate()

Returns information about all established dedicated bearers. Five values are returned per bearer: {<ID>, <TFTPortLowDL>, <TFTPortHighDL>, <TFTPortLowUL>, <TFTPortHighUL>}Bearer 1, …, {…}Bearer n Use this command if you have configured separate port ranges for the uplink and the downlink.

return:

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

get_value() ValueStruct[source]
# SCPI: SENSe:LTE:SIGNaling<instance>:UESinfo:UEADdress:DEDBearer
value: ValueStruct = driver.sense.uesInfo.ueAddress.dedBearer.get_value()

Returns information about all established dedicated bearers. Three values are returned per bearer: {<ID>, <TFTPortLow>, <TFTPortHigh>}Bearer 1, …, {…}Bearer n Use this command if you have configured a single port range per bearer, applicable to the uplink and the downlink.

return:

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