Path<Path>

RepCap Settings

# Range: Path1 .. Path2
rc = driver.configure.iqIn.scc.path.repcap_path_get()
driver.configure.iqIn.scc.path.repcap_path_set(repcap.Path.Path1)

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:IQIN:SCC<Carrier>:PATH<n>
class PathCls[source]

Path commands group definition. 1 total commands, 0 Subgroups, 1 group commands Repeated Capability: Path, default value after init: Path.Path1

class PathStruct[source]

Response structure. Fields:

  • Pep: float: No parameter help available

  • Level: float: No parameter help available

get(secondaryCompCarrier=SecondaryCompCarrier.Default, path=Path.Default) PathStruct[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:IQIN:SCC<Carrier>:PATH<n>
value: PathStruct = driver.configure.iqIn.scc.path.get(secondaryCompCarrier = repcap.SecondaryCompCarrier.Default, path = repcap.Path.Default)

No command help available

param secondaryCompCarrier:

optional repeated capability selector. Default value: CC1 (settable in the interface ‘Scc’)

param path:

optional repeated capability selector. Default value: Path1 (settable in the interface ‘Path’)

return:

structure: for return value, see the help for PathStruct structure arguments.

set(pep: float, level: float, secondaryCompCarrier=SecondaryCompCarrier.Default, path=Path.Default) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:IQIN:SCC<Carrier>:PATH<n>
driver.configure.iqIn.scc.path.set(pep = 1.0, level = 1.0, secondaryCompCarrier = repcap.SecondaryCompCarrier.Default, path = repcap.Path.Default)

No command help available

param pep:

No help available

param level:

No help available

param secondaryCompCarrier:

optional repeated capability selector. Default value: CC1 (settable in the interface ‘Scc’)

param path:

optional repeated capability selector. Default value: Path1 (settable in the interface ‘Path’)

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.iqIn.scc.path.clone()