Tdscdma

SCPI Commands :

[SOURce<HW>]:BB:TDSCdma:LINK
[SOURce<HW>]:BB:TDSCdma:PRESet
[SOURce<HW>]:BB:TDSCdma:RESet
[SOURce<HW>]:BB:TDSCdma:SLENgth
[SOURce<HW>]:BB:TDSCdma:STATe
[SOURce<HW>]:BB:TDSCdma:VERSion
class TdscdmaCls[source]

Tdscdma commands group definition. 358 total commands, 12 Subgroups, 6 group commands

get_link() RsSmbv.enums.LinkDir[source]
# SCPI: [SOURce<HW>]:BB:TDSCdma:LINK
value: enums.LinkDir = driver.source.bb.tdscdma.get_link()

Defines the transmission direction.

return

link: FORWard| DOWN | REVerse| UP

get_slength() int[source]
# SCPI: [SOURce<HW>]:BB:TDSCdma:SLENgth
value: int = driver.source.bb.tdscdma.get_slength()

Sets the sequence length of the arbitrary waveform component of the TD-SCDMA signal in the number of frames. This component is calculated in advance and output in the arbitrary waveform generator. It is added to the realtime signal components.

return

slength: integer Range: 1 to 5000

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:TDSCdma:STATe
value: bool = driver.source.bb.tdscdma.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

get_version() str[source]
# SCPI: [SOURce<HW>]:BB:TDSCdma:VERSion
value: str = driver.source.bb.tdscdma.get_version()

Queries the version of the TD-SCDMA standard underlying the definitions.

return

version: string

preset() None[source]
# SCPI: [SOURce<HW>]:BB:TDSCdma:PRESet
driver.source.bb.tdscdma.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:TDSCdma:STATe.

preset_with_opc(opc_timeout_ms: int = - 1) None[source]
# SCPI: [SOURce<HW>]:BB:TDSCdma:PRESet
driver.source.bb.tdscdma.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:TDSCdma:STATe.

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

param opc_timeout_ms

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

reset() None[source]
# SCPI: [SOURce<HW>]:BB:TDSCdma:RESet
driver.source.bb.tdscdma.reset()

Resets all cells to the predefined settings. The reset applies to the selected link direction.

reset_with_opc(opc_timeout_ms: int = - 1) None[source]
# SCPI: [SOURce<HW>]:BB:TDSCdma:RESet
driver.source.bb.tdscdma.reset_with_opc()

Resets all cells to the predefined settings. The reset applies to the selected link direction.

Same as reset, but waits for the operation to complete before continuing further. Use the RsSmbv.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_link(link: RsSmbv.enums.LinkDir) None[source]
# SCPI: [SOURce<HW>]:BB:TDSCdma:LINK
driver.source.bb.tdscdma.set_link(link = enums.LinkDir.DOWN)

Defines the transmission direction.

param link

FORWard| DOWN | REVerse| UP

set_slength(slength: int) None[source]
# SCPI: [SOURce<HW>]:BB:TDSCdma:SLENgth
driver.source.bb.tdscdma.set_slength(slength = 1)

Sets the sequence length of the arbitrary waveform component of the TD-SCDMA signal in the number of frames. This component is calculated in advance and output in the arbitrary waveform generator. It is added to the realtime signal components.

param slength

integer Range: 1 to 5000

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:TDSCdma:STATe
driver.source.bb.tdscdma.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.tdscdma.clone()

Subgroups