State

SCPI Command :

[SOURce<HW>]:BB:EVDO:USER<ST>:STATe
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(userIx=UserIx.Default) bool[source]
# [SOURce<HW>]:BB:EVDO:USER<ST>:STATe
value: bool = driver.source.bb.evdo.user.state.get(userIx = repcap.UserIx.Default)

Enables or disables the selected user. If the user is enabled, the proper MAC Index is placed within the MAC channel and packets can be sent to the user. If disabled, the MAC Index is not present within the MAC channel and packets cannot be sent to the user. Note: Disabling the state of a user during a transfer aborts all transfers to the user.

Parameters:

userIx – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘User’)

Returns:

state: 1 | ON | 0| OFF

set(state: bool, userIx=UserIx.Default) None[source]
# [SOURce<HW>]:BB:EVDO:USER<ST>:STATe
driver.source.bb.evdo.user.state.set(state = False, userIx = repcap.UserIx.Default)

Enables or disables the selected user. If the user is enabled, the proper MAC Index is placed within the MAC channel and packets can be sent to the user. If disabled, the MAC Index is not present within the MAC channel and packets cannot be sent to the user. Note: Disabling the state of a user during a transfer aborts all transfers to the user.

Parameters:
  • state – 1 | ON | 0| OFF

  • userIx – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘User’)