Digital

SCPI Commands :

[SOURce<HW>]:IQ:OUTPut:DIGital:CDEVice
[SOURce<HW>]:IQ:OUTPut:DIGital:INTerface
[SOURce<HW>]:IQ:OUTPut:DIGital:PON
[SOURce<HW>]:IQ:OUTPut:DIGital:STATe
Commands in total: 27
Subgroups: 6
Direct child commands: 4
get_cdevice() str[source]
# [SOURce<HW>]:IQ:OUTPut:DIGital:CDEVice
value: str = driver.source.iq.output.digital.get_cdevice()

Queries information on the connected device.

Returns:

cdevice: string

get_interface() BbinInterfaceMode[source]
# [SOURce<HW>]:IQ:OUTPut:DIGital:INTerface
value: enums.BbinInterfaceMode = driver.source.iq.output.digital.get_interface()

Selects the connector at that the signal is output.

Returns:

bbout_interf_mode: HSDin | DIN HSDin HS Dig I/Q DIN Dig I/Q

get_pon() UnchOff[source]
# [SOURce<HW>]:IQ:OUTPut:DIGital:PON
value: enums.UnchOff = driver.source.iq.output.digital.get_pon()

Sets the power-on state of the selected digital I/Q output.

Returns:

pon: OFF | UNCHanged

get_state() bool[source]
# [SOURce<HW>]:IQ:OUTPut:DIGital:STATe
value: bool = driver.source.iq.output.digital.get_state()

Activates the digital I/Q signal output. Note: Interdependencies The following functions cannot be activated simultaneously. They deactivate each other.

  • The internal baseband generator ([:SOURce<hw>]:BB:<DigStd>:STATe) and the external digital baseband input (method RsSmbv.source.bbin.state() )

  • The external digital baseband input (method RsSmbv.source.bbin.state() ) and digital output (method RsSmbv.source.iq.output.digital.state() ) because they share the same physical connectors (Dig I/Q and the HS Dig I/Q) .

  • The digital output (method RsSmbv.source.iq.output.digital.state() ) and the output of analog I/Q signals:

  • If [:SOURce<hw>]:IQ:SOURce BASeband, method RsSmbv.source.iq.state() + OUTPut<hw>:STATe or

  • method RsSmbv.source.iq.output.analog.state()

Returns:

state: 1 | ON | 0| OFF

set_interface(bbout_interf_mode: BbinInterfaceMode) None[source]
# [SOURce<HW>]:IQ:OUTPut:DIGital:INTerface
driver.source.iq.output.digital.set_interface(bbout_interf_mode = enums.BbinInterfaceMode.DIGital)

Selects the connector at that the signal is output.

Parameters:

bbout_interf_mode – HSDin | DIN HSDin HS Dig I/Q DIN Dig I/Q

set_pon(pon: UnchOff) None[source]
# [SOURce<HW>]:IQ:OUTPut:DIGital:PON
driver.source.iq.output.digital.set_pon(pon = enums.UnchOff.OFF)

Sets the power-on state of the selected digital I/Q output.

Parameters:

pon – OFF | UNCHanged

set_state(state: bool) None[source]
# [SOURce<HW>]:IQ:OUTPut:DIGital:STATe
driver.source.iq.output.digital.set_state(state = False)

Activates the digital I/Q signal output. Note: Interdependencies The following functions cannot be activated simultaneously. They deactivate each other.

  • The internal baseband generator ([:SOURce<hw>]:BB:<DigStd>:STATe) and the external digital baseband input (method RsSmbv.source.bbin.state() )

  • The external digital baseband input (method RsSmbv.source.bbin.state() ) and digital output (method RsSmbv.source.iq.output.digital.state() ) because they share the same physical connectors (Dig I/Q and the HS Dig I/Q) .

  • The digital output (method RsSmbv.source.iq.output.digital.state() ) and the output of analog I/Q signals:

  • If [:SOURce<hw>]:IQ:SOURce BASeband, method RsSmbv.source.iq.state() + OUTPut<hw>:STATe or

  • method RsSmbv.source.iq.output.analog.state()

Parameters:

state – 1 | ON | 0| OFF

Cloning the Group

# Create a copy of the original group, that exists independently
digital_copy = driver.source.iq.output.digital.clone()

Subgroups