Dvb

SCPI Commands :

[SOURce<HW>]:BB:DVB:PRESet
[SOURce<HW>]:BB:DVB:STANdard
[SOURce<HW>]:BB:DVB:STATe
class DvbCls[source]

Dvb commands group definition. 349 total commands, 13 Subgroups, 3 group commands

get_standard() RsSmw.enums.DvbStandard[source]
# SCPI: [SOURce<HW>]:BB:DVB:STANdard
value: enums.DvbStandard = driver.source.bb.dvb.get_standard()

Selects the DVB standard to be used.

return

standard: DVBH| DVBT | DVBS| DVBX | DVBR

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:DVB:STATe
value: bool = driver.source.bb.dvb.get_state()

Activates the standard and deactivates all the other digital standards and digital modulation modes in the same path.

return

state: 1| ON| 0| OFF

preset() None[source]
# SCPI: [SOURce<HW>]:BB:DVB:PRESet
driver.source.bb.dvb.preset()

Sets the parameters of the digital standard to their default values (*RST values specified for the commands) . Not affected is the state set with the command SOURce<hw>:BB:DVB:STATe.

preset_with_opc(opc_timeout_ms: int = - 1) None[source]
# SCPI: [SOURce<HW>]:BB:DVB:PRESet
driver.source.bb.dvb.preset_with_opc()

Sets the parameters of the digital standard to their default values (*RST values specified for the commands) . Not affected is the state set with the command SOURce<hw>:BB:DVB:STATe.

Same as preset, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms

Maximum time to wait in milliseconds, valid only for this call.

set_standard(standard: RsSmw.enums.DvbStandard) None[source]
# SCPI: [SOURce<HW>]:BB:DVB:STANdard
driver.source.bb.dvb.set_standard(standard = enums.DvbStandard.DVBH)

Selects the DVB standard to be used.

param standard

DVBH| DVBT | DVBS| DVBX | DVBR

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:DVB:STATe
driver.source.bb.dvb.set_state(state = False)

Activates the standard and deactivates all the other digital standards and digital modulation modes in the same path.

param state

1| ON| 0| OFF

Cloning the Group

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

Subgroups