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 the trigger event Range: 1 to 67108863

  • Capt_Samp_Aft_Trig: int: Samples after the trigger event Range: 1 to 67108863

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

Defines the number of samples to be evaluated before the trigger event and after the trigger event. The maximum total number of samples is 67108864. The sum of the two settings must not exceed this value.

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.gprfMeasurement.iqRecorder.capture.set(capt_samp_bef_trig = 1, capt_samp_aft_trig = 1)

Defines the number of samples to be evaluated before the trigger event and after the trigger event. The maximum total number of samples is 67108864. The sum of the two settings must not exceed this value.

param capt_samp_bef_trig:

Samples before the trigger event Range: 1 to 67108863

param capt_samp_aft_trig:

Samples after the trigger event Range: 1 to 67108863