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
class DigitalCls[source]

Digital commands group definition. 27 total commands, 6 Subgroups, 4 group commands

get_cdevice() str[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:DIGital:CDEVice
value: str = driver.source.iq.output.digital.get_cdevice()

Queries information on the connected device.

return

cdevice: string

get_interface() RsSmbv.enums.BbinInterfaceMode[source]
# SCPI: [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.

return

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

get_pon() RsSmbv.enums.UnchOff[source]
# SCPI: [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.

return

pon: OFF| UNCHanged

get_state() bool[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:DIGital:STATe
value: bool = driver.source.iq.output.digital.get_state()
Activates the digital I/Q signal output. Note: Interdependencies

INTRO_CMD_HELP: 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 ([:SOURce<hw>]:BBIN:STATe)

  • The external digital baseband input ([:SOURce<hw>]:BBIN:STATe) and digital output ([:SOURce<hw>]:IQ:OUTPut:DIGital:STATe) because they share the same physical connectors (Dig I/Q and the HS Dig I/Q) .

  • The digital output ([:SOURce<hw>]:IQ:OUTPut:DIGital:STATe) and the output of analog I/Q signals:

Table Header:

  • If [:SOURce<hw>]:IQ:SOURce BASeband, [:SOURce<hw>]:IQ:STATe + OUTPut<hw>:STATe or

  • [:SOURce<hw>]:IQ:OUTPut:ANALog:STATe

return

state: 1| ON| 0| OFF

set_interface(bbout_interf_mode: RsSmbv.enums.BbinInterfaceMode) None[source]
# SCPI: [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.

param bbout_interf_mode

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

set_pon(pon: RsSmbv.enums.UnchOff) None[source]
# SCPI: [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.

param pon

OFF| UNCHanged

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:DIGital:STATe
driver.source.iq.output.digital.set_state(state = False)
Activates the digital I/Q signal output. Note: Interdependencies

INTRO_CMD_HELP: 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 ([:SOURce<hw>]:BBIN:STATe)

  • The external digital baseband input ([:SOURce<hw>]:BBIN:STATe) and digital output ([:SOURce<hw>]:IQ:OUTPut:DIGital:STATe) because they share the same physical connectors (Dig I/Q and the HS Dig I/Q) .

  • The digital output ([:SOURce<hw>]:IQ:OUTPut:DIGital:STATe) and the output of analog I/Q signals:

Table Header:

  • If [:SOURce<hw>]:IQ:SOURce BASeband, [:SOURce<hw>]:IQ:STATe + OUTPut<hw>:STATe or

  • [:SOURce<hw>]:IQ:OUTPut:ANALog:STATe

param state

1| ON| 0| OFF

Cloning the Group

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

Subgroups