Drx

SCPI Commands

CONFigure:GSM:SIGNaling<Instance>:CBS:DRX:ENABle
CONFigure:GSM:SIGNaling<Instance>:CBS:DRX:LENGth
CONFigure:GSM:SIGNaling<Instance>:CBS:DRX:OFFSet
class Drx[source]

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

get_enable()bool[source]
# SCPI: CONFigure:GSM:SIGNaling<instance>:CBS:DRX:ENABle
value: bool = driver.configure.cbs.drx.get_enable()

Enables DRX for CBS.

return

enable: OFF | ON

get_length()int[source]
# SCPI: CONFigure:GSM:SIGNaling<instance>:CBS:DRX:LENGth
value: int = driver.configure.cbs.drx.get_length()

Specifies the length of DRX (L) that the MS can use for the processing of particular CB message. Define the value matching with the position of the specific CB message within the CBS scheduling period.

return

length_of_period: Range: 1 to 40

get_offset()int[source]
# SCPI: CONFigure:GSM:SIGNaling<instance>:CBS:DRX:OFFSet
value: int = driver.configure.cbs.drx.get_offset()

Offset (O) within period of scheduling message. This offset is used for the transmission of a scheduling message.

return

offset: Range: 1 to 39

set_enable(enable: bool)None[source]
# SCPI: CONFigure:GSM:SIGNaling<instance>:CBS:DRX:ENABle
driver.configure.cbs.drx.set_enable(enable = False)

Enables DRX for CBS.

param enable

OFF | ON

set_length(length_of_period: int)None[source]
# SCPI: CONFigure:GSM:SIGNaling<instance>:CBS:DRX:LENGth
driver.configure.cbs.drx.set_length(length_of_period = 1)

Specifies the length of DRX (L) that the MS can use for the processing of particular CB message. Define the value matching with the position of the specific CB message within the CBS scheduling period.

param length_of_period

Range: 1 to 40

set_offset(offset: int)None[source]
# SCPI: CONFigure:GSM:SIGNaling<instance>:CBS:DRX:OFFSet
driver.configure.cbs.drx.set_offset(offset = 1)

Offset (O) within period of scheduling message. This offset is used for the transmission of a scheduling message.

param offset

Range: 1 to 39