Cchannel

SCPI Commands :

[SOURce<HW>]:BB:EVDO:ANETwork:CCHannel:PSOFfset
[SOURce<HW>]:BB:EVDO:ANETwork:CCHannel:RATE
[SOURce<HW>]:BB:EVDO:ANETwork:CCHannel:STATe
Commands in total: 5
Subgroups: 1
Direct child commands: 3
get_ps_offset() int[source]
# [SOURce<HW>]:BB:EVDO:ANETwork:CCHannel:PSOFfset
value: int = driver.source.bb.evdo.anetwork.cchannel.get_ps_offset()

Sets the offset (in slots) from the start of control channel cycle to the start of the synchronous message capsule that contains the Sync Message.

Returns:

ps_offset: integer Range: 0 to 3

get_rate() EvdoDataRate[source]
# [SOURce<HW>]:BB:EVDO:ANETwork:CCHannel:RATE
value: enums.EvdoDataRate = driver.source.bb.evdo.anetwork.cchannel.get_rate()

Sets the rate that the control channel messages are transmitted at.

Returns:

rate: DR4K8 | DR9K6 | DR19K2 | DR38K4 | DR76K8 | DR153K6 | DR307K2 | DR614K4 | DR921K6 | DR1228K8 | DR1536K | DR1843K2 | DR2457K6 | DR3072K | DR460K8 | DR768K | DR1075K2 | DR2150K4 | DR3686K4 | DR4300K8 | DR4915K2

get_state() bool[source]
# [SOURce<HW>]:BB:EVDO:ANETwork:CCHannel:STATe
value: bool = driver.source.bb.evdo.anetwork.cchannel.get_state()

Enables or disables the control channel messages.

Returns:

state: 1 | ON | 0| OFF

set_ps_offset(ps_offset: int) None[source]
# [SOURce<HW>]:BB:EVDO:ANETwork:CCHannel:PSOFfset
driver.source.bb.evdo.anetwork.cchannel.set_ps_offset(ps_offset = 1)

Sets the offset (in slots) from the start of control channel cycle to the start of the synchronous message capsule that contains the Sync Message.

Parameters:

ps_offset – integer Range: 0 to 3

set_rate(rate: EvdoDataRate) None[source]
# [SOURce<HW>]:BB:EVDO:ANETwork:CCHannel:RATE
driver.source.bb.evdo.anetwork.cchannel.set_rate(rate = enums.EvdoDataRate.DR1075K2)

Sets the rate that the control channel messages are transmitted at.

Parameters:

rate – DR4K8 | DR9K6 | DR19K2 | DR38K4 | DR76K8 | DR153K6 | DR307K2 | DR614K4 | DR921K6 | DR1228K8 | DR1536K | DR1843K2 | DR2457K6 | DR3072K | DR460K8 | DR768K | DR1075K2 | DR2150K4 | DR3686K4 | DR4300K8 | DR4915K2

set_state(state: bool) None[source]
# [SOURce<HW>]:BB:EVDO:ANETwork:CCHannel:STATe
driver.source.bb.evdo.anetwork.cchannel.set_state(state = False)

Enables or disables the control channel messages.

Parameters:

state – 1 | ON | 0| OFF

Cloning the Group

# Create a copy of the original group, that exists independently
cchannel_copy = driver.source.bb.evdo.anetwork.cchannel.clone()

Subgroups