Tchannel

SCPI Commands :

[SOURce<HW>]:BB:C2K:PPARameter:TCHannel:COUNt
[SOURce<HW>]:BB:C2K:PPARameter:TCHannel:FLENgth
class TchannelCls[source]

Tchannel commands group definition. 6 total commands, 4 Subgroups, 2 group commands

get_count() int[source]
# SCPI: [SOURce<HW>]:BB:C2K:PPARameter:TCHannel:COUNt
value: int = driver.source.bb.c2K.pparameter.tchannel.get_count()

This command sets the number of activated traffic channels. The setting takes effect only after execution of command [:SOURce<hw>]:BB:C2K:PPARameter:EXECute.

return

count: integer Range: 0 to 8

get_flength() RsSmbv.enums.Cdma2KpredFramLen[source]
# SCPI: [SOURce<HW>]:BB:C2K:PPARameter:TCHannel:FLENgth
value: enums.Cdma2KpredFramLen = driver.source.bb.c2K.pparameter.tchannel.get_flength()

The command activates/deactivates the fundamental channel. The set value is specific for the selected radio configuration. The setting takes effect only after execution of command [:SOURce<hw>]:BB:C2K:PPARameter:EXECute. It is specific for the selected radio configuration. The frame length affects the data rates that are possible within a channel. Changing the frame length can lead to a change of data rate and this in turn can bring about a change of Walsh code.

return

flength: 20| 40| 80

set_count(count: int) None[source]
# SCPI: [SOURce<HW>]:BB:C2K:PPARameter:TCHannel:COUNt
driver.source.bb.c2K.pparameter.tchannel.set_count(count = 1)

This command sets the number of activated traffic channels. The setting takes effect only after execution of command [:SOURce<hw>]:BB:C2K:PPARameter:EXECute.

param count

integer Range: 0 to 8

set_flength(flength: RsSmbv.enums.Cdma2KpredFramLen) None[source]
# SCPI: [SOURce<HW>]:BB:C2K:PPARameter:TCHannel:FLENgth
driver.source.bb.c2K.pparameter.tchannel.set_flength(flength = enums.Cdma2KpredFramLen._20)

The command activates/deactivates the fundamental channel. The set value is specific for the selected radio configuration. The setting takes effect only after execution of command [:SOURce<hw>]:BB:C2K:PPARameter:EXECute. It is specific for the selected radio configuration. The frame length affects the data rates that are possible within a channel. Changing the frame length can lead to a change of data rate and this in turn can bring about a change of Walsh code.

param flength

20| 40| 80

Cloning the Group

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

Subgroups