Capture

SCPI Command :

CONFigure:GPRF:MEASurement<Instance>:IQRecorder:CAPTure
class CaptureCls[source]

Capture commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class CaptureStruct[source]

Response structure. Fields:

  • Capt_Samp_Bef_Trig: int: Samples before trigger event

  • Capt_Samp_Aft_Trig: int: Samples after trigger event

get() CaptureStruct[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:IQRecorder:CAPTure
value: CaptureStruct = driver.configure.gprf.measurement.iqRecorder.capture.get()

Selects the number of samples to be recorded before and after the trigger event. Configure the two settings so that their sum does not exceed the maximum number of samples.

return:

structure: for return value, see the help for CaptureStruct structure arguments.

set(capt_samp_bef_trig: int, capt_samp_aft_trig: int) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:IQRecorder:CAPTure
driver.configure.gprf.measurement.iqRecorder.capture.set(capt_samp_bef_trig = 1, capt_samp_aft_trig = 1)

Selects the number of samples to be recorded before and after the trigger event. Configure the two settings so that their sum does not exceed the maximum number of samples.

param capt_samp_bef_trig:

Samples before trigger event

param capt_samp_aft_trig:

Samples after trigger event