Cmeasure

SCPI Commands :

[CONFigure]:SIGNaling:MEASurement:BLER:CMEasure:CELLs
[CONFigure]:SIGNaling:MEASurement:BLER:CMEasure
class CmeasureCls[source]

Cmeasure commands group definition. 3 total commands, 1 Subgroups, 2 group commands

get_cells() List[str][source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:BLER:CMEasure:CELLs
value: List[str] = driver.configure.signaling.measurement.bler.cmeasure.get_cells()

Selects the cells to be evaluated by the BLER measurement.

return:

cell_name: Comma-separated list of cells

get_value() CellsTypeToMeasure[source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:BLER:CMEasure
value: enums.CellsTypeToMeasure = driver.configure.signaling.measurement.bler.cmeasure.get_value()

Selects the scope of the BLER measurement.

return:

cells_to_measure: CGRoup: Measure certain cell groups, selected via [CONFigure:]SIGNaling:MEASurement:BLER:CMEasure:CGRoup. CELLs: Measure certain cells, selected via [CONFigure:]SIGNaling:MEASurement:BLER:CMEasure:CELLs.

set_cells(cell_name: List[str]) None[source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:BLER:CMEasure:CELLs
driver.configure.signaling.measurement.bler.cmeasure.set_cells(cell_name = ['abc1', 'abc2', 'abc3'])

Selects the cells to be evaluated by the BLER measurement.

param cell_name:

Comma-separated list of cells

set_value(cells_to_measure: CellsTypeToMeasure) None[source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:BLER:CMEasure
driver.configure.signaling.measurement.bler.cmeasure.set_value(cells_to_measure = enums.CellsTypeToMeasure.CELLs)

Selects the scope of the BLER measurement.

param cells_to_measure:

CGRoup: Measure certain cell groups, selected via [CONFigure:]SIGNaling:MEASurement:BLER:CMEasure:CGRoup. CELLs: Measure certain cells, selected via [CONFigure:]SIGNaling:MEASurement:BLER:CMEasure:CELLs.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.signaling.measurement.bler.cmeasure.clone()

Subgroups