T2Mi

SCPI Commands :

[SOURce<HW>]:BB:T2DVb:INPut:T2MI:ANALyzer
[SOURce<HW>]:BB:T2DVb:INPut:T2MI:INTerface
[SOURce<HW>]:BB:T2DVb:INPut:T2MI:MEASuremode
[SOURce<HW>]:BB:T2DVb:INPut:T2MI:PID
[SOURce<HW>]:BB:T2DVb:INPut:T2MI:SID
class T2MiCls[source]

T2Mi commands group definition. 13 total commands, 3 Subgroups, 5 group commands

get_analyzer() str[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:INPut:T2MI:ANALyzer
value: str = driver.source.bb.t2Dvb.inputPy.t2Mi.get_analyzer()

Queries the status of the T2-MI analyzer by an error message.

return:

analyzer: string No error Implies correct behavior of the analyzer.

get_interface() bool[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:INPut:T2MI:INTerface
value: bool = driver.source.bb.t2Dvb.inputPy.t2Mi.get_interface()

Activates the T2-MI modulator interface.

return:

interface: 1| ON| 0| OFF

get_measure_mode() Dvbt2InputSignalMeasurementMode[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:INPut:T2MI:MEASuremode
value: enums.Dvbt2InputSignalMeasurementMode = driver.source.bb.t2Dvb.inputPy.t2Mi.get_measure_mode()

Specifies the measurement mode to configure the evaluation of T2-MI timing parameters.

return:

measure_mode: ABSOLUTE| DELTA

get_pid() int[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:INPut:T2MI:PID
value: int = driver.source.bb.t2Dvb.inputPy.t2Mi.get_pid()

Sets the . The PID belongs to MPEG transport stream packets, that contain T2-MI data.

return:

pid: integer Range: #H0 to #H1FFF

get_sid() int[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:INPut:T2MI:SID
value: int = driver.source.bb.t2Dvb.inputPy.t2Mi.get_sid()

Sets the T2-MI transport . Use the SID, when transmitting a composite signal, in accordance with annex I of the specification .

return:

sid: integer Range: #H0 to #H7

set_interface(interface: bool) None[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:INPut:T2MI:INTerface
driver.source.bb.t2Dvb.inputPy.t2Mi.set_interface(interface = False)

Activates the T2-MI modulator interface.

param interface:

1| ON| 0| OFF

set_measure_mode(measure_mode: Dvbt2InputSignalMeasurementMode) None[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:INPut:T2MI:MEASuremode
driver.source.bb.t2Dvb.inputPy.t2Mi.set_measure_mode(measure_mode = enums.Dvbt2InputSignalMeasurementMode.ABSOLUTE)

Specifies the measurement mode to configure the evaluation of T2-MI timing parameters.

param measure_mode:

ABSOLUTE| DELTA

set_pid(pid: int) None[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:INPut:T2MI:PID
driver.source.bb.t2Dvb.inputPy.t2Mi.set_pid(pid = 1)

Sets the . The PID belongs to MPEG transport stream packets, that contain T2-MI data.

param pid:

integer Range: #H0 to #H1FFF

set_sid(sid: int) None[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:INPut:T2MI:SID
driver.source.bb.t2Dvb.inputPy.t2Mi.set_sid(sid = 1)

Sets the T2-MI transport . Use the SID, when transmitting a composite signal, in accordance with annex I of the specification .

param sid:

integer Range: #H0 to #H7

Cloning the Group

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

Subgroups