All

SCPI Command :

[CONFigure]:SIGNaling:NRADio:CELL:CDRX:ALL
class AllCls[source]

All commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class GetStruct[source]

Response structure. Fields:

  • Enable: bool: Enables or disables connected DRX.

  • Od_Timer: enums.OnDurationTimer: ‘drx-onDurationTimer’

  • Itimer: int: ‘drx-InactivityTimer’

  • Soffset: int: ‘drx-SlotOffset’

  • Dlhr_Timer: int: ‘drx-HARQ-RTT-TimerDL’

  • Dlr_Timer: int: ‘drx-RetransmissionTimerDL’

  • Ul_Hr_Timer: int: ‘drx-HARQ-RTT-TimerUL’

  • Ulr_Timer: int: ‘drx-RetransmissionTimerUL’

  • Ld_Rx_Cycle: int: Duration of one long DRX cycle

  • Ld_Rx_Start_Offset: int: ‘drx-StartOffset’

  • Sd_Rx_Enable: bool: Enables or disables short DRX cycles.

  • Sd_Rx_Cycle: int: Duration of one short DRX cycle.

  • Sd_Rx_Sc_Timer: int: Short cycle timer

  • Wus_Enable: bool: Enables or disables sending DCI with format 2-6 before each long DRX cycle.

  • Wus_Mode: enums.WusMode: Mode for sending wake-up signals. ON to OFF ratio or user-defined.

  • Wus_Ratio_On_Off: float: Percentage of long DRX cycles for which the UE is woken up via DCI with format 2-6 containing wake-up indication = 1.

class SetStruct[source]

Structure for setting input parameters. Contains optional setting parameters. Fields:

  • Cell_Name: str: No parameter help available

  • Enable: bool: Optional setting parameter. Enables or disables connected DRX.

  • Od_Timer: enums.OnDurationTimer: Optional setting parameter. ‘drx-onDurationTimer’

  • Itimer: int: Optional setting parameter. ‘drx-InactivityTimer’

  • Soffset: int: Optional setting parameter. ‘drx-SlotOffset’

  • Dlhr_Timer: int: Optional setting parameter. ‘drx-HARQ-RTT-TimerDL’

  • Dlr_Timer: int: Optional setting parameter. ‘drx-RetransmissionTimerDL’

  • Ul_Hr_Timer: int: Optional setting parameter. ‘drx-HARQ-RTT-TimerUL’

  • Ulr_Timer: int: Optional setting parameter. ‘drx-RetransmissionTimerUL’

  • Ld_Rx_Cycle: int: Optional setting parameter. Duration of one long DRX cycle

  • Ld_Rx_Start_Offset: int: Optional setting parameter. ‘drx-StartOffset’

  • Sd_Rx_Enable: bool: Optional setting parameter. Enables or disables short DRX cycles.

  • Sd_Rx_Cycle: int: Optional setting parameter. Duration of one short DRX cycle.

  • Sd_Rx_Sc_Timer: int: Optional setting parameter. Short cycle timer

  • Wus_Enable: bool: Optional setting parameter. Enables or disables sending DCI with format 2-6 before each long DRX cycle.

  • Wus_Mode: enums.WusMode: Optional setting parameter. Mode for sending wake-up signals. ON to OFF ratio or user-defined.

  • Wus_Ratio_On_Off: float: Optional setting parameter. Percentage of long DRX cycles for which the UE is woken up via DCI with format 2-6 containing wake-up indication = 1.

get(cell_name: str = None) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:NRADio:CELL:CDRX:ALL
value: GetStruct = driver.configure.signaling.nradio.cell.cdrx.all.get(cell_name = 'abc')

Configures connected DRX settings (combination of other commands) .

param cell_name:

No help available

return:

structure: for return value, see the help for GetStruct structure arguments.

set(structure: SetStruct) None[source]
# SCPI: [CONFigure]:SIGNaling:NRADio:CELL:CDRX:ALL
structure = driver.configure.signaling.nradio.cell.cdrx.all.SetStruct()
structure.Cell_Name: str = 'abc'
structure.Enable: bool = False
structure.Od_Timer: enums.OnDurationTimer = enums.OnDurationTimer.M1
structure.Itimer: int = 1
structure.Soffset: int = 1
structure.Dlhr_Timer: int = 1
structure.Dlr_Timer: int = 1
structure.Ul_Hr_Timer: int = 1
structure.Ulr_Timer: int = 1
structure.Ld_Rx_Cycle: int = 1
structure.Ld_Rx_Start_Offset: int = 1
structure.Sd_Rx_Enable: bool = False
structure.Sd_Rx_Cycle: int = 1
structure.Sd_Rx_Sc_Timer: int = 1
structure.Wus_Enable: bool = False
structure.Wus_Mode: enums.WusMode = enums.WusMode.RATio
structure.Wus_Ratio_On_Off: float = 1.0
driver.configure.signaling.nradio.cell.cdrx.all.set(structure)

Configures connected DRX settings (combination of other commands) .

param structure:

for set value, see the help for SetStruct structure arguments.