UeReport

SCPI Commands :

[CONFigure]:SIGNaling:MEASurement:UEReport:ENABle
[CONFigure]:SIGNaling:MEASurement:UEReport:RINTerval
class UeReportCls[source]

UeReport commands group definition. 10 total commands, 2 Subgroups, 2 group commands

get_enable() CellsToMeasure[source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:UEReport:ENABle
value: enums.CellsToMeasure = driver.configure.signaling.measurement.ueReport.get_enable()

Selects whether the UE must send measurement reports and for which type of serving cell.

return:

cells_to_measure: OFF: no serving cell measurement reports ALL: reporting for any serving cell LTE: reporting for LTE serving cell NRADio: reporting for NR serving cell

get_rinterval() ReportInterval[source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:UEReport:RINTerval
value: enums.ReportInterval = driver.configure.signaling.measurement.ueReport.get_rinterval()

Configures the interval between two consecutive serving cell measurement reports.

return:

report_interval: I1 to I5: 120 ms, 240 ms, 480 ms, 640 ms, 1024 ms I6 to I10: 2048 ms, 5120 ms, 10240 ms, 20480 ms, 40960 ms I11 to I14: 1 min, 6 min, 12 min, 30 min

set_enable(cells_to_measure: CellsToMeasure) None[source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:UEReport:ENABle
driver.configure.signaling.measurement.ueReport.set_enable(cells_to_measure = enums.CellsToMeasure.ALL)

Selects whether the UE must send measurement reports and for which type of serving cell.

param cells_to_measure:

OFF: no serving cell measurement reports ALL: reporting for any serving cell LTE: reporting for LTE serving cell NRADio: reporting for NR serving cell

set_rinterval(report_interval: ReportInterval) None[source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:UEReport:RINTerval
driver.configure.signaling.measurement.ueReport.set_rinterval(report_interval = enums.ReportInterval.I1)

Configures the interval between two consecutive serving cell measurement reports.

param report_interval:

I1 to I5: 120 ms, 240 ms, 480 ms, 640 ms, 1024 ms I6 to I10: 2048 ms, 5120 ms, 10240 ms, 20480 ms, 40960 ms I11 to I14: 1 min, 6 min, 12 min, 30 min

Cloning the Group

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

Subgroups