Destination

SCPI Commands :

ASSignment:DESTination:LIST
ASSignment:DESTination:SELect
class DestinationCls[source]

Destination commands group definition. 14 total commands, 1 Subgroups, 2 group commands

get_list_py() str[source]
# SCPI: ASSignment:DESTination:LIST
value: str = driver.assignment.destination.get_list_py()

Queries a list of the available destinations.

return:

list_py: ‘GenName#1’,’GenName2’,…

get_select() str[source]
# SCPI: ASSignment:DESTination:SELect
value: str = driver.assignment.destination.get_select()

Selects the element to which the subsequent commands apply.

return:

select: string Available element as queried with the corresponding …:LIST command. For example, method RsPulseSeq.Assignment.Destination.Path.Antenna.listPy

set_select(select: str) None[source]
# SCPI: ASSignment:DESTination:SELect
driver.assignment.destination.set_select(select = 'abc')

Selects the element to which the subsequent commands apply.

param select:

string Available element as queried with the corresponding …:LIST command. For example, method RsPulseSeq.Assignment.Destination.Path.Antenna.listPy

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.assignment.destination.clone()

Subgroups