Bb

SCPI Commands :

[SOURce<HW>]:BB:CFACtor
[SOURce]:BB:CONFiguration
[SOURce<HW>]:BB:FOFFset
[SOURce<HW>]:BB:IQGain
[SOURce<HW>]:BB:PGAin
[SOURce<HW>]:BB:POFFset
[SOURce<HW>]:BB:ROUTe
class BbCls[source]

Bb commands group definition. 1134 total commands, 26 Subgroups, 7 group commands

get_cfactor() float[source]
# SCPI: [SOURce<HW>]:BB:CFACtor
value: float = driver.source.bb.get_cfactor()

Queries the crest factor of the baseband signal.

return:

cfactor: float Range: 0 to 100, Unit: dB

get_configuration() BbConfig[source]
# SCPI: [SOURce]:BB:CONFiguration
value: enums.BbConfig = driver.source.bb.get_configuration()

No command help available

return:

configuration: No help available

get_foffset() float[source]
# SCPI: [SOURce<HW>]:BB:FOFFset
value: float = driver.source.bb.get_foffset()

Sets a frequency offset for the internal/external baseband signal. The offset affects the generated baseband signal.

return:

foffset: float Range: depends on the installed options , Unit: Hz

get_iq_gain() IqGain[source]
# SCPI: [SOURce<HW>]:BB:IQGain
value: enums.IqGain = driver.source.bb.get_iq_gain()

No command help available

return:

ipartq_gain: No help available

get_pgain() float[source]
# SCPI: [SOURce<HW>]:BB:PGAin
value: float = driver.source.bb.get_pgain()

No command help available

return:

pgain: No help available

get_poffset() float[source]
# SCPI: [SOURce<HW>]:BB:POFFset
value: float = driver.source.bb.get_poffset()

Sets the relative phase offset for the selected baseband signal.

return:

poffset: float Range: 0 to 359.9, Unit: DEG

get_route() PathUniCodBbin[source]
# SCPI: [SOURce<HW>]:BB:ROUTe
value: enums.PathUniCodBbin = driver.source.bb.get_route()

Selects the signal route for the internal/external baseband signal.

return:

route: A

set_configuration(configuration: BbConfig) None[source]
# SCPI: [SOURce]:BB:CONFiguration
driver.source.bb.set_configuration(configuration = enums.BbConfig.NORMal)

No command help available

param configuration:

No help available

set_foffset(foffset: float) None[source]
# SCPI: [SOURce<HW>]:BB:FOFFset
driver.source.bb.set_foffset(foffset = 1.0)

Sets a frequency offset for the internal/external baseband signal. The offset affects the generated baseband signal.

param foffset:

float Range: depends on the installed options , Unit: Hz

set_iq_gain(ipartq_gain: IqGain) None[source]
# SCPI: [SOURce<HW>]:BB:IQGain
driver.source.bb.set_iq_gain(ipartq_gain = enums.IqGain.DB0)

No command help available

param ipartq_gain:

No help available

set_pgain(pgain: float) None[source]
# SCPI: [SOURce<HW>]:BB:PGAin
driver.source.bb.set_pgain(pgain = 1.0)

No command help available

param pgain:

No help available

set_poffset(poffset: float) None[source]
# SCPI: [SOURce<HW>]:BB:POFFset
driver.source.bb.set_poffset(poffset = 1.0)

Sets the relative phase offset for the selected baseband signal.

param poffset:

float Range: 0 to 359.9, Unit: DEG

set_route(route: PathUniCodBbin) None[source]
# SCPI: [SOURce<HW>]:BB:ROUTe
driver.source.bb.set_route(route = enums.PathUniCodBbin.A)

Selects the signal route for the internal/external baseband signal.

param route:

A

Cloning the Group

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

Subgroups