Copy
SCPI Commands :
[SOURce<HW>]:BB:W3GPp:COPY:COFFset
[SOURce<HW>]:BB:W3GPp:COPY:DESTination
[SOURce<HW>]:BB:W3GPp:COPY:SOURce
- Commands in total: 4Subgroups: 1Direct child commands: 3
- get_coffset() int[source]
# [SOURce<HW>]:BB:W3GPp:COPY:COFFset value: int = driver.source.bb.w3Gpp.copy.get_coffset()
Sets the offset for the channelization code in the destination base station.
- Returns:
coffset: integer Range: 0 to 511
- get_destination() NumberA[source]
# [SOURce<HW>]:BB:W3GPp:COPY:DESTination value: enums.NumberA = driver.source.bb.w3Gpp.copy.get_destination()
The command selects the station to which data is to be copied. Whether the data is copied to a base station or a user equipment depends on which transmission direction is selected (command W3GPp:LINK UP | DOWN) .
- Returns:
destination: 1 | 2| 3 | 4 Range: 1 to 4
- get_source() NumberA[source]
# [SOURce<HW>]:BB:W3GPp:COPY:SOURce value: enums.NumberA = driver.source.bb.w3Gpp.copy.get_source()
The command selects the station that has data to be copied. Whether the station copied is a base or user equipment depends on which transmission direction is selected (command W3GPp:LINK UP | DOWN) .
- Returns:
source: 1 | 2| 3 | 4 Range: 1 to 4
- set_coffset(coffset: int) None[source]
# [SOURce<HW>]:BB:W3GPp:COPY:COFFset driver.source.bb.w3Gpp.copy.set_coffset(coffset = 1)
Sets the offset for the channelization code in the destination base station.
- Parameters:
coffset – integer Range: 0 to 511
- set_destination(destination: NumberA) None[source]
# [SOURce<HW>]:BB:W3GPp:COPY:DESTination driver.source.bb.w3Gpp.copy.set_destination(destination = enums.NumberA._1)
The command selects the station to which data is to be copied. Whether the data is copied to a base station or a user equipment depends on which transmission direction is selected (command W3GPp:LINK UP | DOWN) .
- Parameters:
destination – 1 | 2| 3 | 4 Range: 1 to 4
- set_source(source: NumberA) None[source]
# [SOURce<HW>]:BB:W3GPp:COPY:SOURce driver.source.bb.w3Gpp.copy.set_source(source = enums.NumberA._1)
The command selects the station that has data to be copied. Whether the station copied is a base or user equipment depends on which transmission direction is selected (command W3GPp:LINK UP | DOWN) .
- Parameters:
source – 1 | 2| 3 | 4 Range: 1 to 4
Cloning the Group
# Create a copy of the original group, that exists independently
copy_copy = driver.source.bb.w3Gpp.copy.clone()
Subgroups