Points

SCPI Commands :

ACQuire:POINts:ARATe
ACQuire:POINts:MODE
ACQuire:POINts[:VALue]
ACQuire:POINts:DVALue
ACQuire:POINts:MAXimum
Commands in total: 5
Subgroups: 0
Direct child commands: 5
get_arate() float[source]
# ACQuire:POINts:ARATe
value: float = driver.acquire.points.get_arate()

Returns the sample rate of the ADC, before waveform processing. The result is the interleaved sample rate or the non-interleaved one, depending on the channel usage.

Returns:

adc_sample_rate: 5 Gsample/s (interleaved) , 2,5 Gsample/s (non-interleaved)

get_dvalue() int[source]
# ACQuire:POINts:DVALue
value: int = driver.acquire.points.get_dvalue()

Returns the current digital record length used by each digital channel.

Returns:

dig_rec_len: 1000 to 200000000

get_maximum() int[source]
# ACQuire:POINts:MAXimum
value: int = driver.acquire.points.get_maximum()

Sets the maximum record length, if method RsMxo.acquire.points.mode() is set to AUTO.

get_mode() AutoManualMode[source]
# ACQuire:POINts:MODE
value: enums.AutoManualMode = driver.acquire.points.get_mode()

Selects the mode of the waveform record length adjustment. The record length is the number of waveform samples that are stored in one waveform record after processing, including interpolation. It determines the length of the displayed waveform.

get_value() int[source]
# ACQuire:POINts[:VALue]
value: int = driver.acquire.points.get_value()

Sets the record length, if method RsMxo.acquire.points.mode() is set to MANual.

Returns:

record_length: 1000 to 1E+9

set_maximum(record_len_user_limit: int) None[source]
# ACQuire:POINts:MAXimum
driver.acquire.points.set_maximum(record_len_user_limit = 1)

Sets the maximum record length, if method RsMxo.acquire.points.mode() is set to AUTO.

Parameters:

record_len_user_limit – 1000 to 1E+9

set_mode(record_len_mode: AutoManualMode) None[source]
# ACQuire:POINts:MODE
driver.acquire.points.set_mode(record_len_mode = enums.AutoManualMode.AUTO)

Selects the mode of the waveform record length adjustment. The record length is the number of waveform samples that are stored in one waveform record after processing, including interpolation. It determines the length of the displayed waveform.

Parameters:

record_len_mode

AUTO | MANual

  • AUTO: Record length is determined automatically and changes due to instrument internal adjustments.

  • MANual: The waveform record length is defined with ACQuire:POINts[:VALue].

set_value(record_length: int) None[source]
# ACQuire:POINts[:VALue]
driver.acquire.points.set_value(record_length = 1)

Sets the record length, if method RsMxo.acquire.points.mode() is set to MANual.

Parameters:

record_length – 1000 to 1E+9