Result

SCPI Commands :

[CONFigure]:SIGNaling:MEASurement:UEReport:NCELl:RESult:TYPE
[CONFigure]:SIGNaling:MEASurement:UEReport:NCELl:RESult:CNETwork
[CONFigure]:SIGNaling:MEASurement:UEReport:NCELl:RESult:SIB
[CONFigure]:SIGNaling:MEASurement:UEReport:NCELl:RESult:NCList
class ResultCls[source]

Result commands group definition. 5 total commands, 1 Subgroups, 4 group commands

get_cnetwork() CellsToMeasure[source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:UEReport:NCELl:RESult:CNETwork
value: enums.CellsToMeasure = driver.configure.signaling.measurement.ueReport.ncell.result.get_cnetwork()

Selects whether the UE must send measurement reports and for which neighbor cells. Applies only to <Type> = CNETwork, see [CONFigure:]SIGNaling:MEASurement:UEReport:NCELl:RESult:TYPE

return:

cells_to_measure: OFF: no neighbor cell measurement reports ALL: reporting for any neighbor cell LTE: LTE neighbor cells with licensed bands NRADio: NR neighbor cells LLAA: LTE neighbor cells with licensed or LAA bands LAA: LTE neighbor cells with LAA bands

get_nc_list() List[str][source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:UEReport:NCELl:RESult:NCList
value: List[str] = driver.configure.signaling.measurement.ueReport.ncell.result.get_nc_list()

No command help available

return:

cell_name: No help available

get_sib() NcellsToMeasure[source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:UEReport:NCELl:RESult:SIB
value: enums.NcellsToMeasure = driver.configure.signaling.measurement.ueReport.ncell.result.get_sib()

Selects whether the UE must send measurement reports and for which neighbor cells. Applies only to <Type> = SIB, see [CONFigure:]SIGNaling:MEASurement:UEReport:NCELl:RESult:TYPE.

return:

ncells_to_measure: OFF: no neighbor cell measurement reports ALL: reporting for all SIB neighbor cells IAFRequency: reporting intra-frequency SIB neighbor cells IFRequency: reporting inter-frequency SIB neighbor cells IRAT: reporting for inter-RAT SIB neighbor cells

get_type_py() NeighborCellType[source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:UEReport:NCELl:RESult:TYPE
value: enums.NeighborCellType = driver.configure.signaling.measurement.ueReport.ncell.result.get_type_py()

Selects the type of neighbor cell list to be used for neighbor cell measurements.

return:

type_py: CNETwork: all created cells except the serving cell SIB: SIB neighbor cell list (configured neighbors of serving cell) NCList: for future use

set_cnetwork(cells_to_measure: CellsToMeasure) None[source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:UEReport:NCELl:RESult:CNETwork
driver.configure.signaling.measurement.ueReport.ncell.result.set_cnetwork(cells_to_measure = enums.CellsToMeasure.ALL)

Selects whether the UE must send measurement reports and for which neighbor cells. Applies only to <Type> = CNETwork, see [CONFigure:]SIGNaling:MEASurement:UEReport:NCELl:RESult:TYPE

param cells_to_measure:

OFF: no neighbor cell measurement reports ALL: reporting for any neighbor cell LTE: LTE neighbor cells with licensed bands NRADio: NR neighbor cells LLAA: LTE neighbor cells with licensed or LAA bands LAA: LTE neighbor cells with LAA bands

set_nc_list(cell_name: List[str]) None[source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:UEReport:NCELl:RESult:NCList
driver.configure.signaling.measurement.ueReport.ncell.result.set_nc_list(cell_name = ['abc1', 'abc2', 'abc3'])

No command help available

param cell_name:

No help available

set_sib(ncells_to_measure: NcellsToMeasure) None[source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:UEReport:NCELl:RESult:SIB
driver.configure.signaling.measurement.ueReport.ncell.result.set_sib(ncells_to_measure = enums.NcellsToMeasure.ALL)

Selects whether the UE must send measurement reports and for which neighbor cells. Applies only to <Type> = SIB, see [CONFigure:]SIGNaling:MEASurement:UEReport:NCELl:RESult:TYPE.

param ncells_to_measure:

OFF: no neighbor cell measurement reports ALL: reporting for all SIB neighbor cells IAFRequency: reporting intra-frequency SIB neighbor cells IFRequency: reporting inter-frequency SIB neighbor cells IRAT: reporting for inter-RAT SIB neighbor cells

set_type_py(type_py: NeighborCellType) None[source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:UEReport:NCELl:RESult:TYPE
driver.configure.signaling.measurement.ueReport.ncell.result.set_type_py(type_py = enums.NeighborCellType.CNETwork)

Selects the type of neighbor cell list to be used for neighbor cell measurements.

param type_py:

CNETwork: all created cells except the serving cell SIB: SIB neighbor cell list (configured neighbors of serving cell) NCList: for future use

Cloning the Group

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

Subgroups