Srs
SCPI Commands :
TRIGger:LTE:MEASurement<Instance>:SRS:THReshold
TRIGger:LTE:MEASurement<Instance>:SRS:SLOPe
TRIGger:LTE:MEASurement<Instance>:SRS:TOUT
TRIGger:LTE:MEASurement<Instance>:SRS:MGAP
- class SrsCls[source]
Srs commands group definition. 4 total commands, 0 Subgroups, 4 group commands
- get_mgap() float[source]
TRIGger:LTE:MEASurement<Instance>:SRS:MGAP
Snippet: value: float = driver.trigger.lteMeas.srs.get_mgap()
Sets a minimum time during which the IF signal must be below the trigger threshold before the trigger is armed so that an IF power trigger event can be generated.
- return:
min_trig_gap: No help available
- get_slope() SignalSlope[source]
TRIGger:LTE:MEASurement<Instance>:SRS:SLOPe
Snippet: value: enums.SignalSlope = driver.trigger.lteMeas.srs.get_slope()
Qualifies whether the trigger event is generated at the rising or at the falling edge of the trigger pulse (valid for external and power trigger sources) .
- return:
slope: REDGe: Rising edge FEDGe: Falling edge
- get_threshold() float[source]
TRIGger:LTE:MEASurement<Instance>:SRS:THReshold
Snippet: value: float or bool = driver.trigger.lteMeas.srs.get_threshold()
Defines the trigger threshold for power trigger sources.
- return:
trig_threshold: (float or boolean) No help available
- get_timeout() float[source]
TRIGger:LTE:MEASurement<Instance>:SRS:TOUT
Snippet: value: float or bool = driver.trigger.lteMeas.srs.get_timeout()
Selects the maximum time that the measurement waits for a trigger event before it stops in remote control mode or indicates a trigger timeout in manual operation mode. This setting has no influence on Free Run measurements.
- return:
trigger_timeout: (float or boolean) No help available
- set_mgap(min_trig_gap: float) None[source]
TRIGger:LTE:MEASurement<Instance>:SRS:MGAP
Snippet: driver.trigger.lteMeas.srs.set_mgap(min_trig_gap = 1.0)
Sets a minimum time during which the IF signal must be below the trigger threshold before the trigger is armed so that an IF power trigger event can be generated.
- param min_trig_gap:
No help available
- set_slope(slope: SignalSlope) None[source]
TRIGger:LTE:MEASurement<Instance>:SRS:SLOPe
Snippet: driver.trigger.lteMeas.srs.set_slope(slope = enums.SignalSlope.FEDGe)
Qualifies whether the trigger event is generated at the rising or at the falling edge of the trigger pulse (valid for external and power trigger sources) .
- param slope:
REDGe: Rising edge FEDGe: Falling edge
- set_threshold(trig_threshold: float) None[source]
TRIGger:LTE:MEASurement<Instance>:SRS:THReshold
Snippet: driver.trigger.lteMeas.srs.set_threshold(trig_threshold = 1.0)
Defines the trigger threshold for power trigger sources.
- param trig_threshold:
(float or boolean) No help available
- set_timeout(trigger_timeout: float) None[source]
TRIGger:LTE:MEASurement<Instance>:SRS:TOUT
Snippet: driver.trigger.lteMeas.srs.set_timeout(trigger_timeout = 1.0)
Selects the maximum time that the measurement waits for a trigger event before it stops in remote control mode or indicates a trigger timeout in manual operation mode. This setting has no influence on Free Run measurements.
- param trigger_timeout:
(float or boolean) No help available