Handover

SCPI Commands

PREPare:WCDMa:SIGNaling<Instance>:HANDover:DESTination
PREPare:WCDMa:SIGNaling<Instance>:HANDover:MMODe
class Handover[source]

Handover commands group definition. 9 total commands, 2 Sub-groups, 2 group commands

get_destination()str[source]
# SCPI: PREPare:WCDMa:SIGNaling<instance>:HANDover:DESTination
value: str = driver.prepare.handover.get_destination()

Selects the handover destination. A complete list of all supported values can be displayed using method RsCmwWcdmaSig. Prepare.Handover.Catalog.destination.

return

destination: Destination as string

get_mmode()RsCmwWcdmaSig.enums.MobilityMode[source]
# SCPI: PREPare:WCDMa:SIGNaling<instance>:HANDover:MMODe
value: enums.MobilityMode = driver.prepare.handover.get_mmode()

Selects the mechanism to be used for mobility management.

return

mobility_mode: HANDover | REDirection | CCORder Handover, redirection, or cell change order

set_destination(destination: str)None[source]
# SCPI: PREPare:WCDMa:SIGNaling<instance>:HANDover:DESTination
driver.prepare.handover.set_destination(destination = '1')

Selects the handover destination. A complete list of all supported values can be displayed using method RsCmwWcdmaSig. Prepare.Handover.Catalog.destination.

param destination

Destination as string

set_mmode(mobility_mode: RsCmwWcdmaSig.enums.MobilityMode)None[source]
# SCPI: PREPare:WCDMa:SIGNaling<instance>:HANDover:MMODe
driver.prepare.handover.set_mmode(mobility_mode = enums.MobilityMode.CCORder)

Selects the mechanism to be used for mobility management.

param mobility_mode

HANDover | REDirection | CCORder Handover, redirection, or cell change order

Cloning the Group

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

Subgroups