LibTiePie  0.4.5
Library for interfacing TiePie engineering instruments
 All Files Functions Typedefs Macros Modules Pages
Burst completed

Description

Functions for handling the Burst completed event.

Functions

void GenSetCallbackBurstCompleted (TpDeviceHandle_t hDevice, TpCallback_t pCallback, void *pData)
 Set callback function which is called when the generator burst is completed. More...
 
void GenSetEventBurstCompleted (TpDeviceHandle_t hDevice, int fdEvent)
 Set event file descriptor which is set when the generator burst is completed. More...
 
void GenSetEventBurstCompleted (TpDeviceHandle_t hDevice, HANDLE hEvent)
 Set event object handle which is set when the generator burst is completed. More...
 
void GenSetMessageBurstCompleted (TpDeviceHandle_t hDevice, HWND hWnd, WPARAM wParam, LPARAM lParam)
 Set window handle to which a WM_LIBTIEPIE_GEN_BURSTCOMPLETED message is sent when the generator burst is completed. More...
 

Function Documentation

void GenSetCallbackBurstCompleted ( TpDeviceHandle_t  hDevice,
TpCallback_t  pCallback,
void *  pData 
)

Set callback function which is called when the generator burst is completed.

Parameters
hDeviceA device handle.
pCallbackPointer to callback function.
pDataOptional user data.
Since
0.4.0
void GenSetEventBurstCompleted ( TpDeviceHandle_t  hDevice,
int  fdEvent 
)

Set event file descriptor which is set when the generator burst is completed.

Parameters
hDeviceA device handle.
fdEventEvent file descriptor.
Note
This function is only available on GNU/Linux.
Since
0.4.0
void GenSetEventBurstCompleted ( TpDeviceHandle_t  hDevice,
HANDLE  hEvent 
)

Set event object handle which is set when the generator burst is completed.

Parameters
hDeviceA device handle.
hEventA handle to the event object.
Note
This function is only available on Windows.
Since
0.4.0
void GenSetMessageBurstCompleted ( TpDeviceHandle_t  hDevice,
HWND  hWnd,
WPARAM  wParam,
LPARAM  lParam 
)

Set window handle to which a WM_LIBTIEPIE_GEN_BURSTCOMPLETED message is sent when the generator burst is completed.

Parameters
hDeviceA device handle.
hWndA handle to the window whose window procedure is to receive the message. Use NULL to disable.
wParamOptional user value for the messages wParam.
lParamOptional user value for the messages lParam.
Note
This function is only available on Windows.
Since
0.4.0