UeReport

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:UEReport:ENABle
CONFigure:WCDMa:SIGNaling<Instance>:UEReport:RINTerval
class UeReport[source]

UeReport commands group definition. 7 total commands, 2 Sub-groups, 2 group commands

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

Enables or disables the UE measurement report completely.

return

enable: OFF | ON

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

Sets the interval between two consecutive measurement report messages.

return

interval: Range: 0.25 s to 64 s, Unit: s

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

Enables or disables the UE measurement report completely.

param enable

OFF | ON

set_rinterval(interval: float)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:UEReport:RINTerval
driver.configure.ueReport.set_rinterval(interval = 1.0)

Sets the interval between two consecutive measurement report messages.

param interval

Range: 0.25 s to 64 s, Unit: s

Cloning the Group

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

Subgroups