Generator

SCPI Commands :

TEST:BB:GENerator:ARBitrary
TEST:BB:GENerator:SOURce
TEST:BB:GENerator:STATe
class GeneratorCls[source]

Generator commands group definition. 12 total commands, 5 Subgroups, 3 group commands

get_arbitrary() str[source]
# SCPI: TEST:BB:GENerator:ARBitrary
value: str = driver.test.bb.generator.get_arbitrary()

No command help available

return:

filename: No help available

get_source() TestBbGenIqSour[source]
# SCPI: TEST:BB:GENerator:SOURce
value: enums.TestBbGenIqSour = driver.test.bb.generator.get_source()

No command help available

return:

iq_source: No help available

get_state() bool[source]
# SCPI: TEST:BB:GENerator:STATe
value: bool = driver.test.bb.generator.get_state()

No command help available

return:

state: No help available

set_arbitrary(filename: str) None[source]
# SCPI: TEST:BB:GENerator:ARBitrary
driver.test.bb.generator.set_arbitrary(filename = 'abc')

No command help available

param filename:

No help available

set_source(iq_source: TestBbGenIqSour) None[source]
# SCPI: TEST:BB:GENerator:SOURce
driver.test.bb.generator.set_source(iq_source = enums.TestBbGenIqSour.ARB)

No command help available

param iq_source:

No help available

set_state(state: bool) None[source]
# SCPI: TEST:BB:GENerator:STATe
driver.test.bb.generator.set_state(state = False)

No command help available

param state:

No help available

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.test.bb.generator.clone()

Subgroups