Request

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:CELL:REQuest:IMEI
CONFigure:WCDMa:SIGNaling<Instance>:CELL:REQuest:ADETach
CONFigure:WCDMa:SIGNaling<Instance>:CELL:REQuest:RCUR
class Request[source]

Request commands group definition. 3 total commands, 0 Sub-groups, 3 group commands

get_adetach()bool[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:REQuest:ADETach
value: bool = driver.configure.cell.request.get_adetach()

Enables or disables the CS registration and PS attach procedure.

return

enable: OFF | ON

get_imei()bool[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:REQuest:IMEI
value: bool = driver.configure.cell.request.get_imei()

Enables or disables the request of the IMEI from the UE.

return

enable: OFF | ON

get_rcur()bool[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:REQuest:RCUR
value: bool = driver.configure.cell.request.get_rcur()

Enables or disables the request of the radio capability update from the UE.

return

enable: OFF | ON

set_adetach(enable: bool)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:REQuest:ADETach
driver.configure.cell.request.set_adetach(enable = False)

Enables or disables the CS registration and PS attach procedure.

param enable

OFF | ON

set_imei(enable: bool)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:REQuest:IMEI
driver.configure.cell.request.set_imei(enable = False)

Enables or disables the request of the IMEI from the UE.

param enable

OFF | ON

set_rcur(enable: bool)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:REQuest:RCUR
driver.configure.cell.request.set_rcur(enable = False)

Enables or disables the request of the radio capability update from the UE.

param enable

OFF | ON