Segmented
SCPI Commands :
ACQuire:SEGMented:STATe
ACQuire:SEGMented:AUToreplay
ACQuire:SEGMented:MAX
- Commands in total: 3Subgroups: 0Direct child commands: 3
- get_auto_replay() bool[source]
# ACQuire:SEGMented:AUToreplay value: bool = driver.acquire.segmented.get_auto_replay()
If enabled, the instrument starts processing and displaying the data as soon as the acquisition series is captured completely. Depending on the number of acquisitions, it may take some time until the acquisition series is displayed. If the setting is disabled, the instrument only captures the data and stores it in the sample memory.
- get_max() bool[source]
# ACQuire:SEGMented:MAX value: bool = driver.acquire.segmented.get_max()
The number of acquisitions in a fast segmentation acquisition series depends on the record length.
- get_state() bool[source]
# ACQuire:SEGMented:STATe value: bool = driver.acquire.segmented.get_state()
Switches the fast segmentation mode on and off.
- Returns:
state: OFF | ON
- set_auto_replay(enab_rply_aft_acq: bool) None[source]
# ACQuire:SEGMented:AUToreplay driver.acquire.segmented.set_auto_replay(enab_rply_aft_acq = False)
If enabled, the instrument starts processing and displaying the data as soon as the acquisition series is captured completely. Depending on the number of acquisitions, it may take some time until the acquisition series is displayed. If the setting is disabled, the instrument only captures the data and stores it in the sample memory.
- Parameters:
enab_rply_aft_acq – OFF | ON
- set_max(max_acqs: bool) None[source]
# ACQuire:SEGMented:MAX driver.acquire.segmented.set_max(max_acqs = False)
The number of acquisitions in a fast segmentation acquisition series depends on the record length.
- Parameters:
max_acqs –
OFF | ON
ON: Acquires the maximum possible number of acquisitions in a series.
OFF: Acquires the number of acquisitions defined using ACQuire:COUNt.
- set_state(state: bool) None[source]
# ACQuire:SEGMented:STATe driver.acquire.segmented.set_state(state = False)
Switches the fast segmentation mode on and off.
- Parameters:
state – OFF | ON