Switch

SCPI Command :

[CONFigure]:SIGNaling:NRADio:CA:DORMancy:SWITch
class SwitchCls[source]

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

class GetStruct[source]

Response structure. Fields:

  • Dormant: bool: Target dormancy state dormant (ON) or non-dormant (OFF) .

  • Indication_Mode: enums.IndicationMode:
    • AUTO: Send the indication with the next scheduled DCI with format 0_1 or 1_1 or 2_6.

    • WAT1: Send the indication with the next scheduled DCI with format 0_1 or 1_1, within the active time of the DRX cycle.

    • WAT2: Send the indication with the next scheduled DCI with format 1_1, within the active time of the DRX cycle.

    • OATime: Send the indication with the next scheduled DCI with format 2_6, outside the active time of the DRX cycle.

get(cell_group_name: str) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:NRADio:CA:DORMancy:SWITch
value: GetStruct = driver.configure.signaling.nradio.ca.dormancy.switch.get(cell_group_name = 'abc')

Switches the dormancy state and selects the DCI format used to transport the dormancy indication to the UE.

param cell_group_name:

No help available

return:

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

set(cell_group_name: str, dormant: bool, indication_mode: IndicationMode) None[source]
# SCPI: [CONFigure]:SIGNaling:NRADio:CA:DORMancy:SWITch
driver.configure.signaling.nradio.ca.dormancy.switch.set(cell_group_name = 'abc', dormant = False, indication_mode = enums.IndicationMode.AUTO)

Switches the dormancy state and selects the DCI format used to transport the dormancy indication to the UE.

param cell_group_name:

No help available

param dormant:

Target dormancy state dormant (ON) or non-dormant (OFF) .

param indication_mode:
  • AUTO: Send the indication with the next scheduled DCI with format 0_1 or 1_1 or 2_6.

  • WAT1: Send the indication with the next scheduled DCI with format 0_1 or 1_1, within the active time of the DRX cycle.

  • WAT2: Send the indication with the next scheduled DCI with format 1_1, within the active time of the DRX cycle.

  • OATime: Send the indication with the next scheduled DCI with format 2_6, outside the active time of the DRX cycle.