Special

SCPI Commands :

[SOURce<HW>]:BB:ISDBt:[SPECial]:ACData2
[SOURce<HW>]:BB:ISDBt:[SPECial]:REEDsolomon
[SOURce<HW>]:BB:ISDBt:[SPECial]:TXParam
class SpecialCls[source]

Special commands group definition. 6 total commands, 3 Subgroups, 3 group commands

get_ac_data_2() SpecialAcData[source]
# SCPI: [SOURce<HW>]:BB:ISDBt:[SPECial]:ACData2
value: enums.SpecialAcData = driver.source.bb.isdbt.special.get_ac_data_2()

Sets the carrier modulation.

return:

ac_data_2: ALL1| PRBS ALL1 Sets all carriers to 1. PRBS Sets PRBS modulated carriers. You can set the PRBS length via [:SOURcehw]:BB:ISDBt:PRBS[:SEQuence].

get_reed_solomon() bool[source]
# SCPI: [SOURce<HW>]:BB:ISDBt:[SPECial]:REEDsolomon
value: bool = driver.source.bb.isdbt.special.get_reed_solomon()

Enables/disables the Reed-Solomon encoder.

return:

reed_solomon: 1| ON| 0| OFF

get_tx_param() IsdbtSpecialTxParam[source]
# SCPI: [SOURce<HW>]:BB:ISDBt:[SPECial]:TXParam
value: enums.IsdbtSpecialTxParam = driver.source.bb.isdbt.special.get_tx_param()

Defines the static setting of the transmission parameter switching indicator.

return:

tx_param_sw_ind: N1| N2| N11| N12| N13| N14| N15| NORMal| N2| N4| N5| N6| N7| N8| N9| N10

set_ac_data_2(ac_data_2: SpecialAcData) None[source]
# SCPI: [SOURce<HW>]:BB:ISDBt:[SPECial]:ACData2
driver.source.bb.isdbt.special.set_ac_data_2(ac_data_2 = enums.SpecialAcData.ALL1)

Sets the carrier modulation.

param ac_data_2:

ALL1| PRBS ALL1 Sets all carriers to 1. PRBS Sets PRBS modulated carriers. You can set the PRBS length via [:SOURcehw]:BB:ISDBt:PRBS[:SEQuence].

set_reed_solomon(reed_solomon: bool) None[source]
# SCPI: [SOURce<HW>]:BB:ISDBt:[SPECial]:REEDsolomon
driver.source.bb.isdbt.special.set_reed_solomon(reed_solomon = False)

Enables/disables the Reed-Solomon encoder.

param reed_solomon:

1| ON| 0| OFF

set_tx_param(tx_param_sw_ind: IsdbtSpecialTxParam) None[source]
# SCPI: [SOURce<HW>]:BB:ISDBt:[SPECial]:TXParam
driver.source.bb.isdbt.special.set_tx_param(tx_param_sw_ind = enums.IsdbtSpecialTxParam.N1)

Defines the static setting of the transmission parameter switching indicator.

param tx_param_sw_ind:

N1| N2| N11| N12| N13| N14| N15| NORMal| N2| N4| N5| N6| N7| N8| N9| N10

Cloning the Group

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

Subgroups