|
libtiepie-hw 1.4.0
|
Functions to control the offset of a demo signal. More...

Functions | |
| TIEPIE_HW_API tiepie_hw_bool | tiepie_hw_oscilloscope_channel_demo_has_offset (tiepie_hw_handle handle, uint16_t ch) |
| Check whether the currently selected demo signal type supports setting the offset. | |
| TIEPIE_HW_API double | tiepie_hw_oscilloscope_channel_demo_get_offset (tiepie_hw_handle handle, uint16_t ch) |
| Get the currently selected demo signal offset of a specified demo oscilloscope channel. | |
| TIEPIE_HW_API double | tiepie_hw_oscilloscope_channel_demo_set_offset (tiepie_hw_handle handle, uint16_t ch, double value) |
| Set the demo signal offset of a specified demo oscilloscope channel, in Volt. | |
Functions to control the offset of a demo signal.
Several of the demo signal types support setting the signal offset, but others don't. Use tiepie_hw_oscilloscope_channel_demo_has_offset() to find out whether the selected demo signal type supports setting the offset.
By default the offset is set to: 0 Volt.
| TIEPIE_HW_API tiepie_hw_bool tiepie_hw_oscilloscope_channel_demo_has_offset | ( | tiepie_hw_handle | handle, |
| uint16_t | ch | ||
| ) |
Check whether the currently selected demo signal type supports setting the offset.
| [in] | handle | A device handle identifying the oscilloscope. |
| [in] | ch | The channel number identifying the channel, 0 to tiepie_hw_oscilloscope_get_channel_count() - 1. |
| TIEPIE_HW_STATUS_INVALID_CHANNEL | |
| 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_channel_demo_get_offset | ( | tiepie_hw_handle | handle, |
| uint16_t | ch | ||
| ) |
Get the currently selected demo signal offset of a specified demo oscilloscope channel.
| [in] | handle | A device handle identifying the oscilloscope. |
| [in] | ch | The channel number identifying the channel, 0 to tiepie_hw_oscilloscope_get_channel_count() - 1. |
| TIEPIE_HW_STATUS_NOT_SUPPORTED | The currently selected demo signal type does not support getting the demo signal offset. |
| TIEPIE_HW_STATUS_INVALID_CHANNEL | |
| 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_channel_demo_set_offset | ( | tiepie_hw_handle | handle, |
| uint16_t | ch, | ||
| double | value | ||
| ) |
Set the demo signal offset of a specified demo oscilloscope channel, in Volt.
| [in] | handle | A device handle identifying the oscilloscope. |
| [in] | ch | The channel number identifying the channel, 0 to tiepie_hw_oscilloscope_get_channel_count() - 1. |
| [in] | value | The requested demo signal offset, in Volt. |
| TIEPIE_HW_STATUS_NOT_SUPPORTED | The currently selected demo signal type does not support setting the demo signal offset. |
| TIEPIE_HW_STATUS_INVALID_VALUE | The requested signal offset is not valid. |
| TIEPIE_HW_STATUS_INVALID_CHANNEL | |
| 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 |