Additional

SCPI Commands :

[SOURce<HW>]:BB:C2K:MSTation:ADDitional:COUNt
[SOURce<HW>]:BB:C2K:MSTation:ADDitional:STATe
class AdditionalCls[source]

Additional commands group definition. 5 total commands, 3 Subgroups, 2 group commands

get_count() int[source]
# SCPI: [SOURce<HW>]:BB:C2K:MSTation:ADDitional:COUNt
value: int = driver.source.bb.c2K.mstation.additional.get_count()

Sets the number of additional mobile stations.

return

count: integer Range: 1 to 64

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:C2K:MSTation:ADDitional:STATe
value: bool = driver.source.bb.c2K.mstation.additional.get_state()

The command activates additional mobile stations.

return

state: 1| ON| 0| OFF

set_count(count: int) None[source]
# SCPI: [SOURce<HW>]:BB:C2K:MSTation:ADDitional:COUNt
driver.source.bb.c2K.mstation.additional.set_count(count = 1)

Sets the number of additional mobile stations.

param count

integer Range: 1 to 64

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:C2K:MSTation:ADDitional:STATe
driver.source.bb.c2K.mstation.additional.set_state(state = False)

The command activates additional mobile stations.

param state

1| ON| 0| OFF

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.c2K.mstation.additional.clone()

Subgroups