UeReport

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>:UEReport:ENABle
CONFigure:LTE:SIGNaling<instance>:UEReport:WMQuantity
CONFigure:LTE:SIGNaling<instance>:UEReport:MGENable
CONFigure:LTE:SIGNaling<instance>:UEReport:MGPeriod
CONFigure:LTE:SIGNaling<instance>:UEReport:RINTerval
CONFigure:LTE:SIGNaling<instance>:UEReport:MCSCell
CONFigure:LTE:SIGNaling<instance>:UEReport:AINTerrupt
class UeReportCls[source]

UeReport commands group definition. 16 total commands, 2 Subgroups, 7 group commands

get_ainterrupt() bool[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UEReport:AINTerrupt
value: bool = driver.configure.ueReport.get_ainterrupt()

Specifies the signaling parameter ‘allowInterruptions’.

return:

enable: OFF | ON

get_enable() bool[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UEReport:ENABle
value: bool = driver.configure.ueReport.get_enable()

Enables or disables UE measurement reports.

return:

enable: OFF | ON

get_mcs_cell() MeasCellCycle[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UEReport:MCSCell
value: enums.MeasCellCycle = driver.configure.ueReport.get_mcs_cell()

Specifies the signaling parameter ‘measCycleSCell’.

return:

cycle: OFF | SF160 | SF256 | SF320 | SF512 | SF640 | SF1024 | SF1280 OFF: Do not signal ‘measCycleSCell’ SFn: n subframes

get_mg_enable() bool[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UEReport:MGENable
value: bool = driver.configure.ueReport.get_mg_enable()

Enables or disables transmission gaps for neighbor cell measurements.

return:

enable: OFF | ON

get_mg_period() TransGap[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UEReport:MGPeriod
value: enums.TransGap = driver.configure.ueReport.get_mg_period()

Specifies the periodicity of transmission gaps for neighbor cell measurements.

return:

gap: G040 | G080 G040: one gap per 40 ms G080: one gap per 80 ms

get_rinterval() ReportInterval[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UEReport:RINTerval
value: enums.ReportInterval = driver.configure.ueReport.get_rinterval()

Sets the interval between two consecutive measurement reports.

return:

interval: I120 | I240 | I480 | I640 | I1024 | I2048 | I5120 | I10240 Interval in ms, e.g. I240 = 240 ms

get_wm_quantity() WmQuantity[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UEReport:WMQuantity
value: enums.WmQuantity = driver.configure.ueReport.get_wm_quantity()

Selects whether the UE must determine the RSCP or the Ec/No during WCDMA neighbor cell measurements.

return:

quantity: RSCP | ECNO

set_ainterrupt(enable: bool) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UEReport:AINTerrupt
driver.configure.ueReport.set_ainterrupt(enable = False)

Specifies the signaling parameter ‘allowInterruptions’.

param enable:

OFF | ON

set_enable(enable: bool) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UEReport:ENABle
driver.configure.ueReport.set_enable(enable = False)

Enables or disables UE measurement reports.

param enable:

OFF | ON

set_mcs_cell(cycle: MeasCellCycle) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UEReport:MCSCell
driver.configure.ueReport.set_mcs_cell(cycle = enums.MeasCellCycle.OFF)

Specifies the signaling parameter ‘measCycleSCell’.

param cycle:

OFF | SF160 | SF256 | SF320 | SF512 | SF640 | SF1024 | SF1280 OFF: Do not signal ‘measCycleSCell’ SFn: n subframes

set_mg_enable(enable: bool) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UEReport:MGENable
driver.configure.ueReport.set_mg_enable(enable = False)

Enables or disables transmission gaps for neighbor cell measurements.

param enable:

OFF | ON

set_mg_period(gap: TransGap) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UEReport:MGPeriod
driver.configure.ueReport.set_mg_period(gap = enums.TransGap.G040)

Specifies the periodicity of transmission gaps for neighbor cell measurements.

param gap:

G040 | G080 G040: one gap per 40 ms G080: one gap per 80 ms

set_rinterval(interval: ReportInterval) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UEReport:RINTerval
driver.configure.ueReport.set_rinterval(interval = enums.ReportInterval.I1024)

Sets the interval between two consecutive measurement reports.

param interval:

I120 | I240 | I480 | I640 | I1024 | I2048 | I5120 | I10240 Interval in ms, e.g. I240 = 240 ms

set_wm_quantity(quantity: WmQuantity) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UEReport:WMQuantity
driver.configure.ueReport.set_wm_quantity(quantity = enums.WmQuantity.ECNO)

Selects whether the UE must determine the RSCP or the Ec/No during WCDMA neighbor cell measurements.

param quantity:

RSCP | ECNO

Cloning the Group

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

Subgroups