Cchannel
SCPI Commands :
[SOURce<HW>]:BB:EVDO:ANETwork:CCHannel:PSOFfset
[SOURce<HW>]:BB:EVDO:ANETwork:CCHannel:RATE
[SOURce<HW>]:BB:EVDO:ANETwork:CCHannel:STATe
- class CchannelCls[source]
Cchannel commands group definition. 5 total commands, 1 Subgroups, 3 group commands
- get_ps_offset() int [source]
# SCPI: [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.
- return
ps_offset: integer Range: 0 to 3
- get_rate() RsSmbv.enums.EvdoDataRate [source]
# SCPI: [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.
- return
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]
# SCPI: [SOURce<HW>]:BB:EVDO:ANETwork:CCHannel:STATe value: bool = driver.source.bb.evdo.anetwork.cchannel.get_state()
Enables or disables the control channel messages.
- return
state: 1| ON| 0| OFF
- set_ps_offset(ps_offset: int) None [source]
# SCPI: [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.
- param ps_offset
integer Range: 0 to 3
- set_rate(rate: RsSmbv.enums.EvdoDataRate) None [source]
# SCPI: [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.
- param 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]
# SCPI: [SOURce<HW>]:BB:EVDO:ANETwork:CCHannel:STATe driver.source.bb.evdo.anetwork.cchannel.set_state(state = False)
Enables or disables the control channel messages.
- param state
1| ON| 0| OFF
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.bb.evdo.anetwork.cchannel.clone()
Subgroups