libtiepie-hw
1.1.10
|
Functions to control the trigger delay of an oscilloscope. More...
Functions | |
TIEPIE_HW_API tiepie_hw_bool | tiepie_hw_oscilloscope_trigger_has_delay (tiepie_hw_handle handle) |
Check whether the oscilloscope has trigger delay support with the currently selected measure mode. More... | |
TIEPIE_HW_API double | tiepie_hw_oscilloscope_trigger_get_delay_max (tiepie_hw_handle handle) |
Get the maximum trigger delay in seconds, for the currently selected measure mode and sample rate. More... | |
TIEPIE_HW_API double | tiepie_hw_oscilloscope_trigger_get_delay (tiepie_hw_handle handle) |
Get the currently selected trigger delay in seconds, for a specified oscilloscope. More... | |
TIEPIE_HW_API double | tiepie_hw_oscilloscope_trigger_set_delay (tiepie_hw_handle handle, double value) |
Set trigger delay in seconds, for a specified oscilloscope. More... | |
Functions to control the trigger delay of an oscilloscope.
Trigger delay allows to start measuring a specified time after the trigger occurred. This allows to capture events that are more than one full record length past the trigger moment.
Trigger delay is not available for all instruments and only available in measure mode Block. Use tiepie_hw_oscilloscope_trigger_has_delay() to check whether trigger delay is available for your instrument and in the currently set measure mode.
The trigger delay can be affected by changing the sample rate.
TIEPIE_HW_API tiepie_hw_bool tiepie_hw_oscilloscope_trigger_has_delay | ( | tiepie_hw_handle | handle | ) |
Check whether the oscilloscope has trigger delay support with the currently selected measure mode.
[in] | handle | A device handle identifying the oscilloscope. |
TIEPIE_HW_STATUS_INVALID_HANDLE | The handle is not a valid oscilloscope handle. |
TIEPIE_HW_STATUS_OBJECT_GONE | |
TIEPIE_HW_STATUS_LIBRARY_NOT_INITIALIZED | |
TIEPIE_HW_STATUS_SUCCESS |
TIEPIE_HW_API double tiepie_hw_oscilloscope_trigger_get_delay_max | ( | tiepie_hw_handle | handle | ) |
Get the maximum trigger delay in seconds, for the currently selected measure mode and sample rate.
[in] | handle | A device handle identifying the oscilloscope. |
TIEPIE_HW_STATUS_NOT_SUPPORTED | The oscilloscope does not support trigger delay. |
TIEPIE_HW_STATUS_INVALID_HANDLE | The handle is not a valid oscilloscope handle. |
TIEPIE_HW_STATUS_OBJECT_GONE | |
TIEPIE_HW_STATUS_LIBRARY_NOT_INITIALIZED | |
TIEPIE_HW_STATUS_SUCCESS |
TIEPIE_HW_API double tiepie_hw_oscilloscope_trigger_get_delay | ( | tiepie_hw_handle | handle | ) |
Get the currently selected trigger delay in seconds, for a specified oscilloscope.
[in] | handle | A device handle identifying the oscilloscope. |
TIEPIE_HW_STATUS_NOT_SUPPORTED | The oscilloscope does not support trigger delay. |
TIEPIE_HW_STATUS_INVALID_HANDLE | The handle is not a valid oscilloscope handle. |
TIEPIE_HW_STATUS_OBJECT_GONE | |
TIEPIE_HW_STATUS_LIBRARY_NOT_INITIALIZED | |
TIEPIE_HW_STATUS_SUCCESS |
TIEPIE_HW_API double tiepie_hw_oscilloscope_trigger_set_delay | ( | tiepie_hw_handle | handle, |
double | value | ||
) |
Set trigger delay in seconds, for a specified oscilloscope.
[in] | handle | A device handle identifying the oscilloscope. |
[in] | value | The required trigger delay in seconds. |
TIEPIE_HW_STATUS_VALUE_MODIFIED | The requested trigger delay is within the valid range but not available. The closest valid value is set. |
TIEPIE_HW_STATUS_INVALID_VALUE | |
TIEPIE_HW_STATUS_NOT_SUPPORTED | The oscilloscope does not support trigger delay. |
TIEPIE_HW_STATUS_INVALID_HANDLE | The handle is not a valid oscilloscope handle. |
TIEPIE_HW_STATUS_OBJECT_GONE | |
TIEPIE_HW_STATUS_LIBRARY_NOT_INITIALIZED | |
TIEPIE_HW_STATUS_SUCCESS |