Gcoupling

SCPI Command:

CONFigure:AFRF:MEASurement<Instance>:SIN:GCOupling
class GcouplingCls[source]

Gcoupling commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class GcouplingStruct[source]

Response structure. Fields:

  • Coupling_Left: enums.GeneratorCoupling: OFF | GEN1 | GEN3 OFF No coupling of left channel GENn Left channel coupled to audio generator n

  • Coupling_Right: enums.GeneratorCoupling: OFF | GEN2 | GEN4 OFF No coupling of right channel GENn Right channel coupled to audio generator n

get() GcouplingStruct[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:SIN:GCOupling
value: GcouplingStruct = driver.configure.afRf.measurement.spdif.gcoupling.get()

Couples the channels of the SPDIF IN connector to an internal signal generator. The combinations GEN1+GEN4 and GEN3+GEN2 are not allowed.

return:

structure: for return value, see the help for GcouplingStruct structure arguments.

set(coupling_left: GeneratorCoupling, coupling_right: GeneratorCoupling) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:SIN:GCOupling
driver.configure.afRf.measurement.spdif.gcoupling.set(coupling_left = enums.GeneratorCoupling.GEN1, coupling_right = enums.GeneratorCoupling.GEN1)

Couples the channels of the SPDIF IN connector to an internal signal generator. The combinations GEN1+GEN4 and GEN3+GEN2 are not allowed.

param coupling_left:

OFF | GEN1 | GEN3 OFF No coupling of left channel GENn Left channel coupled to audio generator n

param coupling_right:

OFF | GEN2 | GEN4 OFF No coupling of right channel GENn Right channel coupled to audio generator n