Clipping

SCPI Commands :

[SOURce<HW>]:BB:EVDO:CLIPping:LEVel
[SOURce<HW>]:BB:EVDO:CLIPping:MODE
[SOURce<HW>]:BB:EVDO:CLIPping:STATe
Commands in total: 3
Subgroups: 0
Direct child commands: 3
get_level() int[source]
# [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

Returns:

level: integer Range: 0 PCT to 100 PCT

get_mode() ClipMode[source]
# [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.

Returns:

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]
# [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.

Returns:

state: 1 | ON | 0| OFF

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

Parameters:

level – integer Range: 0 PCT to 100 PCT

set_mode(mode: ClipMode) None[source]
# [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.

Parameters:

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]
# [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.

Parameters:

state – 1 | ON | 0| OFF