Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions GenICamApp/src/ADGenICam.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,12 @@ static const char *driverName = "ADGenICam";
* \param[in] priority The EPICS thread priority for this driver. 0=use asyn default.
* \param[in] stackSize The size of the stack for the EPICS port thread. 0=use asyn default.
*/
ADGenICam::ADGenICam(const char *portName, size_t maxMemory, int priority, int stackSize)
ADGenICam::ADGenICam(const char *portName, size_t maxMemory, int priority, int stackSize, int asynFlags)
: ADDriver(portName, 1, 0, 0, maxMemory,
asynInt64Mask | asynEnumMask,
asynInt64Mask | asynEnumMask,
ASYN_CANBLOCK, 1, priority, stackSize),
asynFlags | ASYN_CANBLOCK,
1, priority, stackSize),
mGCFeatureSet(this, pasynUserSelf), mFirstDrvUserCreateCall(true)
{
//static const char *functionName = "ADGenICam";
Expand Down
2 changes: 1 addition & 1 deletion GenICamApp/src/ADGenICam.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ typedef struct {
class ADGENICAM_API ADGenICam : public ADDriver
{
public:
ADGenICam(const char *portName, size_t maxMemory, int priority, int stackSize);
ADGenICam(const char *portName, size_t maxMemory, int priority, int stackSize, int asynFlags = 0);

// virtual methods to override from ADDriver
virtual asynStatus writeInt32( asynUser *pasynUser, epicsInt32 value);
Expand Down