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
Commands in total: 360
Subgroups: 12
Direct child commands: 6
get_link() LinkDir[source]
# [SOURce<HW>]:BB:TDSCdma:LINK
value: enums.LinkDir = driver.source.bb.tdscdma.get_link()

Defines the transmission direction.

Returns:

link: FORWard | DOWN | REVerse | UP

get_slength() int[source]
# [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.

Returns:

slength: integer Range: 1 to 5000

get_state() bool[source]
# [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.

Returns:

state: 1 | ON | 0| OFF

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

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

Returns:

version: string

preset() None[source]
# [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]
# [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 RsSmw.utilities.opc_timeout_set() to set the timeout value.

Parameters:

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

reset() None[source]
# [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. An overview is provided by table in ‘Set to Default’.

reset_with_opc(opc_timeout_ms: int = -1) None[source]
# [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. An overview is provided by table in ‘Set to Default’.

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

Parameters:

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

set_link(link: LinkDir) None[source]
# [SOURce<HW>]:BB:TDSCdma:LINK
driver.source.bb.tdscdma.set_link(link = enums.LinkDir.DOWN)

Defines the transmission direction.

Parameters:

link – FORWard | DOWN | REVerse | UP

set_slength(slength: int) None[source]
# [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.

Parameters:

slength – integer Range: 1 to 5000

set_state(state: bool) None[source]
# [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.

Parameters:

state – 1 | ON | 0| OFF

Cloning the Group

# Create a copy of the original group, that exists independently
tdscdma_copy = driver.source.bb.tdscdma.clone()

Subgroups