Thresholds

SCPI Command :

[CONFigure]:SIGNaling:LTE:NCELl:THResholds
class ThresholdsCls[source]

Thresholds commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class GetStruct[source]

Response structure. Fields:

  • Threshold_Low: float: Threshold ThreshX Low (‘ThreshX, LowP’) .

  • Threshold_High: float: Threshold ThreshX High (‘ThreshX, HighP’) .

get(cell_name: str, ncell_name: str) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:LTE:NCELl:THResholds
value: GetStruct = driver.configure.signaling.lte.ncell.thresholds.get(cell_name = 'abc', ncell_name = 'abc')

Configures reselection thresholds for an entry in the neighbor cell list of an LTE or NR cell.

param cell_name:

Serving LTE or NR cell via which the neighbor cell list is broadcasted.

param ncell_name:

Neighbor cell

return:

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

set(cell_name: str, ncell_name: str, threshold_low: float, threshold_high: float) None[source]
# SCPI: [CONFigure]:SIGNaling:LTE:NCELl:THResholds
driver.configure.signaling.lte.ncell.thresholds.set(cell_name = 'abc', ncell_name = 'abc', threshold_low = 1.0, threshold_high = 1.0)

Configures reselection thresholds for an entry in the neighbor cell list of an LTE or NR cell.

param cell_name:

Serving LTE or NR cell via which the neighbor cell list is broadcasted.

param ncell_name:

Neighbor cell

param threshold_low:

Threshold ThreshX Low (‘ThreshX, LowP’) .

param threshold_high:

Threshold ThreshX High (‘ThreshX, HighP’) .