State

SCPI Commands :

SOURce:LTE:SIGNaling<instance>:CELL:STATe:ALL
SOURce:LTE:SIGNaling<instance>:CELL:STATe
class StateCls[source]

State commands group definition. 2 total commands, 0 Subgroups, 2 group commands

class AllStruct[source]

Structure for reading output parameters. Fields:

  • Main_State: enums.MainState: OFF | ON | RFHandover OFF: generator switched off ON: generator switched on RFHandover: ready to receive a handover from another signaling application

  • Sync_State: enums.SignalingGeneratorState: PENDing | ADJusted PENDing: generator turned on (off) but signal not yet (still) available ADJusted: physical output signal corresponds to main generator state

get_all() AllStruct[source]
# SCPI: SOURce:LTE:SIGNaling<instance>:CELL:STATe:ALL
value: AllStruct = driver.source.cell.state.get_all()

Returns detailed information about the signaling generator state.

return:

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

get_value() bool[source]
# SCPI: SOURce:LTE:SIGNaling<instance>:CELL:STATe
value: bool = driver.source.cell.state.get_value()

Turns the generator (the cell) on or off.

return:

main_state: No help available

set_value(main_state: bool) None[source]
# SCPI: SOURce:LTE:SIGNaling<instance>:CELL:STATe
driver.source.cell.state.set_value(main_state = False)

Turns the generator (the cell) on or off.

param main_state:

No help available