LibTiePie  0.4.2
Library for interfacing TiePie engineering instruments
 All Files Functions Typedefs Groups Pages
Enabled

The enabled state of a device trigger input determines whether an input is selected as trigger source. More...

Functions

bool8_t DevTrInGetEnabled (TpDeviceHandle_t hDevice, uint16_t wInput)
 Check whether a device trigger input is enabled.
 
bool8_t DevTrInSetEnabled (TpDeviceHandle_t hDevice, uint16_t wInput, bool8_t bEnable)
 To select a device trigger input as trigger source, set trigger input enabled.
 

Detailed Description

The enabled state of a device trigger input determines whether an input is selected as trigger source.

By default all device trigger inputs are disabled (BOOL8_FALSE)

Function Documentation

bool8_t DevTrInGetEnabled ( TpDeviceHandle_t  hDevice,
uint16_t  wInput 
)

Check whether a device trigger input is enabled.

Parameters
hDeviceA device handle.
wInputTrigger input number, 0 to DevTrInGetCount() - 1.
Returns
BOOL8_TRUE if enabled, BOOL8_FALSE otherwise.
See Also
DevTrInSetEnabled
bool8_t DevTrInSetEnabled ( TpDeviceHandle_t  hDevice,
uint16_t  wInput,
bool8_t  bEnable 
)

To select a device trigger input as trigger source, set trigger input enabled.

Parameters
hDeviceA device handle.
wInputTrigger input number, 0 to DevTrInGetCount() - 1.
bEnableBOOL8_TRUE or BOOL8_FALSE.
Returns
BOOL8_TRUE if enabled, BOOL8_FALSE otherwise.
See Also
DevTrInGetEnabled