C2K
SCPI Commands :
[SOURce<HW>]:BB:C2K:LINK
[SOURce<HW>]:BB:C2K:PRESet
[SOURce<HW>]:BB:C2K:SLENgth
[SOURce<HW>]:BB:C2K:STATe
[SOURce]:BB:C2K:VERSion
- Commands in total: 150Subgroups: 13Direct child commands: 5
- get_link() LinkDir[source]
# [SOURce<HW>]:BB:C2K:LINK value: enums.LinkDir = driver.source.bb.c2K.get_link()
The command defines the transmission direction. The signal either corresponds to that of a base station (FORWard | DOWN) or that of a mobile station (REVerse | UP) .
- Returns:
link: DOWN | UP | FORWard | REVerse
- get_slength() int[source]
# [SOURce<HW>]:BB:C2K:SLENgth value: int = driver.source.bb.c2K.get_slength()
Sets the sequence length of the arbitrary waveform component of the CDMA2000 signal in the number of frames.
- Returns:
slength: integer Range: 1 to max
- get_state() bool[source]
# [SOURce<HW>]:BB:C2K:STATe value: bool = driver.source.bb.c2K.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]:BB:C2K:VERSion value: str = driver.source.bb.c2K.get_version()
The command queries the version of the CDMA standard underlying the definitions.
- Returns:
version: string
- preset() None[source]
# [SOURce<HW>]:BB:C2K:PRESet driver.source.bb.c2K.preset()
Sets the parameters of the digital standard to their default values (
*RSTvalues specified for the commands) . Not affected is the state set with the command SOURce<hw>:BB:C2K:STATe.
- preset_with_opc(opc_timeout_ms: int = -1) None[source]
# [SOURce<HW>]:BB:C2K:PRESet driver.source.bb.c2K.preset_with_opc()
Sets the parameters of the digital standard to their default values (
*RSTvalues specified for the commands) . Not affected is the state set with the command SOURce<hw>:BB:C2K: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.
- set_link(link: LinkDir) None[source]
# [SOURce<HW>]:BB:C2K:LINK driver.source.bb.c2K.set_link(link = enums.LinkDir.DOWN)
The command defines the transmission direction. The signal either corresponds to that of a base station (FORWard | DOWN) or that of a mobile station (REVerse | UP) .
- Parameters:
link – DOWN | UP | FORWard | REVerse
- set_slength(slength: int) None[source]
# [SOURce<HW>]:BB:C2K:SLENgth driver.source.bb.c2K.set_slength(slength = 1)
Sets the sequence length of the arbitrary waveform component of the CDMA2000 signal in the number of frames.
- Parameters:
slength – integer Range: 1 to max
- set_state(state: bool) None[source]
# [SOURce<HW>]:BB:C2K:STATe driver.source.bb.c2K.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
c2K_copy = driver.source.bb.c2K.clone()
Subgroups