areaDetector
3-5-0
EPICS areaDetector framework
|
#include <algorithm>
#include <iocsh.h>
#include <epicsTime.h>
#include <epicsExit.h>
#include <epicsExport.h>
#include "ADLambda.h"
#include <LambdaSysImpl.h>
Functions | |
int | LambdaConfig (const char *portName, const char *configPath, int maxBuffers, size_t maxMemory, int priority, int stackSize) |
Configuration command for Lambda driver; creates a new ADLambda object. More... | |
epicsExportRegistrar (LambdaRegister) | |
epicsExportRegistrar | ( | LambdaRegister | ) |
int LambdaConfig | ( | const char * | portName, |
const char * | configPath, | ||
int | maxBuffers, | ||
size_t | maxMemory, | ||
int | priority, | ||
int | stackSize | ||
) |
Configuration command for Lambda driver; creates a new ADLambda object.
[in] | portName | The name of the asyn port driver to be created. |
[in] | configPath | to the config files. |
[in] | maxBuffers | The maximum number of NDArray buffers that the NDArrayPool for this driver is allowed to allocate. Set this to -1 to allow an unlimited number of buffers. |
[in] | maxMemory | The maximum amount of memory that the NDArrayPool for this driver is allowed to allocate. Set this to -1 to allow an unlimited amount of memory. |
[in] | priority | The thread priority for the asyn port driver thread if ASYN_CANBLOCK is set in asynFlags. |
[in] | stackSize | The stack size for the asyn port driver thread if ASYN_CANBLOCK is set in asynFlags. |