Copy

SCPI Commands :

[SOURce<HW>]:FSIMulator:COPY:DESTination
[SOURce<HW>]:FSIMulator:COPY:SOURce
class CopyCls[source]

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

get_destination() int[source]
# SCPI: [SOURce<HW>]:FSIMulator:COPY:DESTination
value: int = driver.source.fsimulator.copy.get_destination()

Selects a group whose settings will be overwritten.

return

destination: integer Range: 1 to 4 (Standard Delay) / 8 (Fine Delay)

get_source() int[source]
# SCPI: [SOURce<HW>]:FSIMulator:COPY:SOURce
value: int = driver.source.fsimulator.copy.get_source()

Sets the group whose settings are to be copied.

return

source: integer Range: 1 to 8

set_destination(destination: int) None[source]
# SCPI: [SOURce<HW>]:FSIMulator:COPY:DESTination
driver.source.fsimulator.copy.set_destination(destination = 1)

Selects a group whose settings will be overwritten.

param destination

integer Range: 1 to 4 (Standard Delay) / 8 (Fine Delay)

set_source(source: int) None[source]
# SCPI: [SOURce<HW>]:FSIMulator:COPY:SOURce
driver.source.fsimulator.copy.set_source(source = 1)

Sets the group whose settings are to be copied.

param source

integer Range: 1 to 8

Cloning the Group

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

Subgroups