ReSelection

SCPI Commands

CONFigure:GSM:SIGNaling<Instance>:CELL:RESelection:TRESelection
CONFigure:GSM:SIGNaling<Instance>:CELL:RESelection:HYSTeresis
class ReSelection[source]

ReSelection commands group definition. 5 total commands, 1 Sub-groups, 2 group commands

get_hysteresis()int[source]
# SCPI: CONFigure:GSM:SIGNaling<instance>:CELL:RESelection:HYSTeresis
value: int = driver.configure.cell.reSelection.get_hysteresis()

Sets the hysteresis for the cell reselection algorithm.

return

hysteresis: Range: 0 dB to 14 dB, Unit: dB

get_tre_selection()int[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:CELL:RESelection:TRESelection
value: int = driver.configure.cell.reSelection.get_tre_selection()

Sets the time hysteresis for the cell reselection algorithm.

return

tre_selection: Range: 5 s to 20 s, Unit: s

set_hysteresis(hysteresis: int)None[source]
# SCPI: CONFigure:GSM:SIGNaling<instance>:CELL:RESelection:HYSTeresis
driver.configure.cell.reSelection.set_hysteresis(hysteresis = 1)

Sets the hysteresis for the cell reselection algorithm.

param hysteresis

Range: 0 dB to 14 dB, Unit: dB

set_tre_selection(tre_selection: int)None[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:CELL:RESelection:TRESelection
driver.configure.cell.reSelection.set_tre_selection(tre_selection = 1)

Sets the time hysteresis for the cell reselection algorithm.

param tre_selection

Range: 5 s to 20 s, Unit: s

Cloning the Group

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

Subgroups