State

SCPI Command :

[SOURce<HW>]:BB:C2K:MSTation<ST>:CHANnel<CH>:STATe
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(mobileStation=MobileStation.Default, channel=Channel.Default) bool[source]
# [SOURce<HW>]:BB:C2K:MSTation<ST>:CHANnel<CH>:STATe
value: bool = driver.source.bb.c2K.mstation.channel.state.get(mobileStation = repcap.MobileStation.Default, channel = repcap.Channel.Default)

This command activates/deactivates the selected channel. For the traffic channels, this value is specific for the selected radio configuration.

Parameters:
  • mobileStation – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Mstation’)

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

Returns:

state: 1 | ON | 0| OFF

set(state: bool, mobileStation=MobileStation.Default, channel=Channel.Default) None[source]
# [SOURce<HW>]:BB:C2K:MSTation<ST>:CHANnel<CH>:STATe
driver.source.bb.c2K.mstation.channel.state.set(state = False, mobileStation = repcap.MobileStation.Default, channel = repcap.Channel.Default)

This command activates/deactivates the selected channel. For the traffic channels, this value is specific for the selected radio configuration.

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

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

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