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
Commands in total: 5
Subgroups: 1
Direct child commands: 4
get_length() EvdoRabLen[source]
# [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.

Returns:

length: RL8 | RL16 | RL32 | RL64

get_level() float[source]
# [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.

Returns:

level: float Range: -25 to -7

get_offset() int[source]
# [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.

Returns:

offset: integer Range: 0 to 7

get_state() bool[source]
# [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) .

Returns:

state: 1 | ON | 0| OFF

set_length(length: EvdoRabLen) None[source]
# [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.

Parameters:

length – RL8 | RL16 | RL32 | RL64

set_level(level: float) None[source]
# [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.

Parameters:

level – float Range: -25 to -7

set_offset(offset: int) None[source]
# [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.

Parameters:

offset – integer Range: 0 to 7

set_state(state: bool) None[source]
# [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) .

Parameters:

state – 1 | ON | 0| OFF

Cloning the Group

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

Subgroups