Clipping

SCPI Commands :

[SOURce<HW>]:BB:EVDO:CLIPping:LEVel
[SOURce<HW>]:BB:EVDO:CLIPping:MODE
[SOURce<HW>]:BB:EVDO:CLIPping:STATe
class ClippingCls[source]

Clipping commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_level() int[source]
# SCPI: [SOURce<HW>]:BB:EVDO:CLIPping:LEVel
value: int = driver.source.bb.evdo.clipping.get_level()

(For reverse link mode only) The command sets the limit for level clipping (Clipping) . This value indicates at what point the signal is clipped. It is specified as a percentage, relative to the highest level. 100% indicates that clipping does not take place. Level clipping is activated with the command SOUR:BB:EVDO:CLIP:STAT ON

return

level: integer Range: 0 PCT to 100 PCT

get_mode() RsSmbv.enums.ClipMode[source]
# SCPI: [SOURce<HW>]:BB:EVDO:CLIPping:MODE
value: enums.ClipMode = driver.source.bb.evdo.clipping.get_mode()

(For reverse link mode only) Sets the method for level clipping.

return

mode: VECTor| SCALar VECTor The reference level is the amplitude | i+jq | SCALar The reference level is the absolute maximum of the I and Q values.

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:EVDO:CLIPping:STATe
value: bool = driver.source.bb.evdo.clipping.get_state()

(For reverse link mode only) The command activates level clipping (Clipping) . The value is defined with the commandBB:EVDO:CLIPping:LEVel, the mode of calculation with the command BB:EVDO:CLIPping:MODE.

return

state: 1| ON| 0| OFF

set_level(level: int) None[source]
# SCPI: [SOURce<HW>]:BB:EVDO:CLIPping:LEVel
driver.source.bb.evdo.clipping.set_level(level = 1)

(For reverse link mode only) The command sets the limit for level clipping (Clipping) . This value indicates at what point the signal is clipped. It is specified as a percentage, relative to the highest level. 100% indicates that clipping does not take place. Level clipping is activated with the command SOUR:BB:EVDO:CLIP:STAT ON

param level

integer Range: 0 PCT to 100 PCT

set_mode(mode: RsSmbv.enums.ClipMode) None[source]
# SCPI: [SOURce<HW>]:BB:EVDO:CLIPping:MODE
driver.source.bb.evdo.clipping.set_mode(mode = enums.ClipMode.SCALar)

(For reverse link mode only) Sets the method for level clipping.

param mode

VECTor| SCALar VECTor The reference level is the amplitude | i+jq | SCALar The reference level is the absolute maximum of the I and Q values.

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

(For reverse link mode only) The command activates level clipping (Clipping) . The value is defined with the commandBB:EVDO:CLIPping:LEVel, the mode of calculation with the command BB:EVDO:CLIPping:MODE.

param state

1| ON| 0| OFF