State

SCPI Commands :

SOURce:WLAN:SIGNaling<instance>:STATe:ALL
SOURce:WLAN:SIGNaling<instance>: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: bool: OFF | ON

  • Sync_State: enums.SyncState: PENDing | ADJusted PENDing: The generator has been turned on (off) but the signal is not yet (still) available. ADJusted: The physical output signal corresponds to the main generator state.

  • Dut_1: enums.PsState: IDLE | AUTHenticated | ASSociated | DEAuthenticated | DISassociated | CTIMeout

  • Dut_2: enums.PsState: IDLE | AUTHenticated | ASSociated | DEAuthenticated | DISassociated | CTIMeout

  • Dut_3: enums.PsState: IDLE | AUTHenticated | ASSociated | DEAuthenticated | DISassociated | CTIMeout

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

Returns detailed information about the WLAN signaling generator state and the connection state of station one to three. See also ‘Connection status’.

return:

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

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

Turns the generator (the cell) on or off.

return:

main_state: ON | OFF | 1 | 0 Switch generator ON or OFF

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

Turns the generator (the cell) on or off.

param main_state:

ON | OFF | 1 | 0 Switch generator ON or OFF