Carrier<Carrier>

RepCap Settings

# Range: Nr1 .. Nr2
rc = driver.configure.rfSettings.channel.tch.carrier.repcap_carrier_get()
driver.configure.rfSettings.channel.tch.carrier.repcap_carrier_set(repcap.Carrier.Nr1)

SCPI Commands

CONFigure:GSM:SIGNaling<Instance>:RFSettings:CHANnel:TCH:CARRier<Carrier>
class Carrier[source]

Carrier commands group definition. 1 total commands, 0 Sub-groups, 1 group commands Repeated Capability: Carrier, default value after init: Carrier.Nr1

get(carrier=<Carrier.Default: -1>)int[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:RFSettings:CHANnel:TCH[:CARRier<Carrier>]
value: int = driver.configure.rfSettings.channel.tch.carrier.get(carrier = repcap.Carrier.Default)

Sets the GSM channel number for the traffic channel (TCH) for circuit switched connections and the packet data channel (PDCH) for packet switched connections. The range of values depends on the selected band, for an overview see ‘GSM Bands and Channels’.

param carrier

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

return

channel: The default values are for GSM 900. Range: 1 to 124, 940 to 1023

set(channel: int, carrier=<Carrier.Default: -1>)None[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:RFSettings:CHANnel:TCH[:CARRier<Carrier>]
driver.configure.rfSettings.channel.tch.carrier.set(channel = 1, carrier = repcap.Carrier.Default)

Sets the GSM channel number for the traffic channel (TCH) for circuit switched connections and the packet data channel (PDCH) for packet switched connections. The range of values depends on the selected band, for an overview see ‘GSM Bands and Channels’.

param channel

The default values are for GSM 900. Range: 1 to 124, 940 to 1023

param carrier

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.rfSettings.channel.tch.carrier.clone()