Imode

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>:CONNection:CDRX:IMODe:CLENgth
CONFigure:LTE:SIGNaling<instance>:CONNection:CDRX:IMODe:PTWindow
CONFigure:LTE:SIGNaling<instance>:CONNection:CDRX:IMODe:ENABle
class ImodeCls[source]

Imode commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_clength() IdleDrxLength[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:CDRX:IMODe:CLENgth
value: enums.IdleDrxLength = driver.configure.connection.cdrx.imode.get_clength()

Configures the duration of one eDRX cycle in idle mode.

return:

length: L512 | L1024 | L2048 | L4096 | L6144 | L8192 | L10240 | L12288 | L14336 | L16384 | L32768 | L65536 | L131072 | L262144 Ln means n radio frames

get_enable() bool[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:CDRX:IMODe:ENABle
value: bool = driver.configure.connection.cdrx.imode.get_enable()

Enables or disables eDRX.

return:

enable: OFF | ON

get_pt_window() Window[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:CDRX:IMODe:PTWindow
value: enums.Window = driver.configure.connection.cdrx.imode.get_pt_window()

Configures the duration of one paging time window in idle mode.

return:

window: W1280 | W2560 | W3840 | W5120 | W6400 | W7680 | W8960 | W10240 | W11520 | W12800 | W14080 | W15360 | W16640 | W17920 | W19200 | W20480 Wn means n subframes

set_clength(length: IdleDrxLength) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:CDRX:IMODe:CLENgth
driver.configure.connection.cdrx.imode.set_clength(length = enums.IdleDrxLength.L1024)

Configures the duration of one eDRX cycle in idle mode.

param length:

L512 | L1024 | L2048 | L4096 | L6144 | L8192 | L10240 | L12288 | L14336 | L16384 | L32768 | L65536 | L131072 | L262144 Ln means n radio frames

set_enable(enable: bool) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:CDRX:IMODe:ENABle
driver.configure.connection.cdrx.imode.set_enable(enable = False)

Enables or disables eDRX.

param enable:

OFF | ON

set_pt_window(window: Window) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:CDRX:IMODe:PTWindow
driver.configure.connection.cdrx.imode.set_pt_window(window = enums.Window.W10240)

Configures the duration of one paging time window in idle mode.

param window:

W1280 | W2560 | W3840 | W5120 | W6400 | W7680 | W8960 | W10240 | W11520 | W12800 | W14080 | W15360 | W16640 | W17920 | W19200 | W20480 Wn means n subframes