Bb

SCPI Commands :

[SOURce<HW>]:BB:FOFFset
[SOURce<HW>]:BB:POFFset
class BbCls[source]

Bb commands group definition. 8 total commands, 1 Subgroups, 2 group commands

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

Sets the frequency offset for the baseband signal. The offset affects the signal on the baseband block output. It shifts the useful baseband signal in the center frequency.

return:

foffset: float

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

Sets the relative phase offset of the baseband signal. The phase offset affects the signal of the ‘Baseband Block’ output.

return:

ph_offset: float

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

Sets the frequency offset for the baseband signal. The offset affects the signal on the baseband block output. It shifts the useful baseband signal in the center frequency.

param foffset:

float

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

Sets the relative phase offset of the baseband signal. The phase offset affects the signal of the ‘Baseband Block’ output.

param ph_offset:

float

Cloning the Group

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

Subgroups