Connection

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:CONNection:SRBData
CONFigure:WCDMa:SIGNaling<Instance>:CONNection:UETerminate
CONFigure:WCDMa:SIGNaling<Instance>:CONNection:CID
class Connection[source]

Connection commands group definition. 43 total commands, 6 Sub-groups, 3 group commands

class SrbSataStruct[source]

Structure for reading output parameters. Fields:

  • Downlink: enums.SrbDataRate: R1K7 | R2K5 | R3K4 | R13K6 In kbit/s: 1.7, 2.5, 3.4, 13.6

  • Uplink: enums.SrbDataRate: R1K7 | R2K5 | R3K4 | R13K6 In kbit/s: 1.7, 2.5, 3.4, 13.6

get_cid()str[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CONNection:CID
value: str = driver.configure.connection.get_cid()

Sets the calling party number of the R&S CMW to be displayed at the UE. Allowed characters are 0 to 9, *, #, a, b, c.

return

caller_id: 1 to 20-digit ID

get_srb_sata()SrbSataStruct[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CONNection:SRBData
value: SrbSataStruct = driver.configure.connection.get_srb_sata()

Selects the SRB data rate for downlink and uplink.

return

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

get_ue_terminate()RsCmwWcdmaSig.enums.TerminatingType[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CONNection:UETerminate
value: enums.TerminatingType = driver.configure.connection.get_ue_terminate()

Selects the connection type to be used for UE terminating connections initiated by the instrument.

return

type_py: VOICe | VIDeo | SRB | TEST

set_cid(caller_id: str)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CONNection:CID
driver.configure.connection.set_cid(caller_id = '1')

Sets the calling party number of the R&S CMW to be displayed at the UE. Allowed characters are 0 to 9, *, #, a, b, c.

param caller_id

1 to 20-digit ID

set_srb_sata(value: RsCmwWcdmaSig.Implementations.Configure_.Connection.Connection.SrbSataStruct)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CONNection:SRBData
driver.configure.connection.set_srb_sata(value = SrbSataStruct())

Selects the SRB data rate for downlink and uplink.

param value

see the help for SrbSataStruct structure arguments.

set_ue_terminate(type_py: RsCmwWcdmaSig.enums.TerminatingType)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CONNection:UETerminate
driver.configure.connection.set_ue_terminate(type_py = enums.TerminatingType.RMC)

Selects the connection type to be used for UE terminating connections initiated by the instrument.

param type_py

VOICe | VIDeo | SRB | TEST

Cloning the Group

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

Subgroups