Copy

SCPI Commands :

[SOURce<HW>]:BB:W3GPp:COPY:COFFset
[SOURce<HW>]:BB:W3GPp:COPY:DESTination
[SOURce<HW>]:BB:W3GPp:COPY:SOURce
class CopyCls[source]

Copy commands group definition. 4 total commands, 1 Subgroups, 3 group commands

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

return

coffset: integer Range: 0 to 511

get_destination() RsSmbv.enums.NumberA[source]
# SCPI: [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) .

return

destination: 1| 2| 3| 4 Range: 1 to 4

get_source() RsSmbv.enums.NumberA[source]
# SCPI: [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) .

return

source: 1| 2| 3| 4 Range: 1 to 4

set_coffset(coffset: int) None[source]
# SCPI: [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.

param coffset

integer Range: 0 to 511

set_destination(destination: RsSmbv.enums.NumberA) None[source]
# SCPI: [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) .

param destination

1| 2| 3| 4 Range: 1 to 4

set_source(source: RsSmbv.enums.NumberA) None[source]
# SCPI: [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) .

param source

1| 2| 3| 4 Range: 1 to 4

Cloning the Group

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

Subgroups