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: integer Samples before trigger event Range: 1 to 4194303

  • Capt_Samp_Aft_Trig: int: integer Samples after trigger event Range: 1 to 4194303

get() CaptureStruct[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:IQRecorder:CAPTure
value: CaptureStruct = driver.configure.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.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:

integer Samples before trigger event Range: 1 to 4194303

param capt_samp_aft_trig:

integer Samples after trigger event Range: 1 to 4194303