Thresholds

SCPI Commands

CONFigure:GSM:SIGNaling<Instance>:NCELl:ALL:THResholds:HIGH
class Thresholds[source]

Thresholds commands group definition. 1 total commands, 0 Sub-groups, 1 group commands

class HighStruct[source]

Structure for reading output parameters. Fields:

  • Valid: bool: OFF | ON OFF: use individual thresholds defined by separate commands ON: use common threshold defined by this command

  • High: int: Range: 0 to 31

get_high()HighStruct[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:NCELl:ALL:THResholds:HIGH
value: HighStruct = driver.configure.ncell.all.thresholds.get_high()

Configures a common reselection high threshold value applicable to all technologies. Alternatively to a common threshold you can also use individual thresholds. They are defined per technology via the commands CONFigure:GSM:SIGN<i>:NCELl:<Technology>:THResholds:HIGH. The parameter <Valid> selects whether common or individual thresholds are used.

return

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

set_high(value: RsCmwGsmSig.Implementations.Configure_.Ncell_.All_.Thresholds.Thresholds.HighStruct)None[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:NCELl:ALL:THResholds:HIGH
driver.configure.ncell.all.thresholds.set_high(value = HighStruct())

Configures a common reselection high threshold value applicable to all technologies. Alternatively to a common threshold you can also use individual thresholds. They are defined per technology via the commands CONFigure:GSM:SIGN<i>:NCELl:<Technology>:THResholds:HIGH. The parameter <Valid> selects whether common or individual thresholds are used.

param value

see the help for HighStruct structure arguments.