Rab

SCPI Commands :

[SOURce<HW>]:BB:EVDO:ANETwork:RAB:LENGth
[SOURce<HW>]:BB:EVDO:ANETwork:RAB:LEVel
[SOURce<HW>]:BB:EVDO:ANETwork:RAB:OFFSet
[SOURce<HW>]:BB:EVDO:ANETwork:RAB:STATe
class RabCls[source]

Rab commands group definition. 5 total commands, 1 Subgroups, 4 group commands

get_length() RsSmbv.enums.EvdoRabLen[source]
# SCPI: [SOURce<HW>]:BB:EVDO:ANETwork:RAB:LENGth
value: enums.EvdoRabLen = driver.source.bb.evdo.anetwork.rab.get_length()

Sets the duration (in slots) of a Reverse Activity bit. Note: This parameter is available for physical layer subtype 0&1 only.

return

length: RL8| RL16| RL32| RL64

get_level() float[source]
# SCPI: [SOURce<HW>]:BB:EVDO:ANETwork:RAB:LEVel
value: float = driver.source.bb.evdo.anetwork.rab.get_level()

Sets the power within the MAC block for the Reverse Activity channel.

return

level: float Range: -25 to -7

get_offset() int[source]
# SCPI: [SOURce<HW>]:BB:EVDO:ANETwork:RAB:OFFSet
value: int = driver.source.bb.evdo.anetwork.rab.get_offset()

Sets the starting time offset of the Reverse Activity bit in slots. The command is specified in Reverse Activity Length/8 units. The RA bit starts when the following equation is satisfied: System Time mod RAB length = RAB Offset, where System Time is expressed in slots. Note: This parameter is available for physical layer subtype 0&1 only.

return

offset: integer Range: 0 to 7

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

Activates or deactivates the reverse activity bit (RAB) .

return

state: 1| ON| 0| OFF

set_length(length: RsSmbv.enums.EvdoRabLen) None[source]
# SCPI: [SOURce<HW>]:BB:EVDO:ANETwork:RAB:LENGth
driver.source.bb.evdo.anetwork.rab.set_length(length = enums.EvdoRabLen.RL16)

Sets the duration (in slots) of a Reverse Activity bit. Note: This parameter is available for physical layer subtype 0&1 only.

param length

RL8| RL16| RL32| RL64

set_level(level: float) None[source]
# SCPI: [SOURce<HW>]:BB:EVDO:ANETwork:RAB:LEVel
driver.source.bb.evdo.anetwork.rab.set_level(level = 1.0)

Sets the power within the MAC block for the Reverse Activity channel.

param level

float Range: -25 to -7

set_offset(offset: int) None[source]
# SCPI: [SOURce<HW>]:BB:EVDO:ANETwork:RAB:OFFSet
driver.source.bb.evdo.anetwork.rab.set_offset(offset = 1)

Sets the starting time offset of the Reverse Activity bit in slots. The command is specified in Reverse Activity Length/8 units. The RA bit starts when the following equation is satisfied: System Time mod RAB length = RAB Offset, where System Time is expressed in slots. Note: This parameter is available for physical layer subtype 0&1 only.

param offset

integer Range: 0 to 7

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

Activates or deactivates the reverse activity bit (RAB) .

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.rab.clone()

Subgroups