Skip to content

Commit

Permalink
Fix typo, update date
Browse files Browse the repository at this point in the history
  • Loading branch information
jwlodek committed Aug 17, 2020
1 parent c89b909 commit 9dc5ed4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
10 changes: 7 additions & 3 deletions uvcApp/src/ADUVC.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
/*
* Main source code for ADUVC EPICS driver.
*
* This file contains the code for all functions, destrucot/constructor for ADUVC
* This file contains the code for the implementation of the
* destructor, constructor, and methods for ADUVC
*
* Author: Jakub Wlodek
* Created: July 2018
* Copyright (c): 2018 Brookhaven National Laboratory
* Last Edited: August 2020
* Copyright (c): 2018-2020 Brookhaven National Laboratory
*
*/

Expand All @@ -26,17 +28,19 @@
#include <epicsExport.h>


// Area Detector include
// Local ADUVC include
#include "ADUVC.h"


// libuvc includes
#include <libuvc/libuvc.h>
#include <libuvc/libuvc_config.h>


// standard namespace
using namespace std;


// define driver name for logging
static const char* driverName = "ADUVC";

Expand Down
11 changes: 7 additions & 4 deletions uvcApp/src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,19 @@ endif

USR_CPPFLAGS += -std=c++11

#UVC_HOME = /epics/support/areaDetector-3-2/ADUVC
#USR_INCLUDES += -I$(UVC_HOME)/include/libuvc

# Define our IOC library as libADUVC
LIBRARY_IOC = ADUVC

# Define our source code file
LIB_SRCS += ADUVC.cpp

# Link against libuvc
LIB_LIBS += uvc
#SYS_PROD_LIBS += boost_system

# Define DBD file for ioc shell command registration
DBD += uvcSupport.dbd

# Include top level Library Makefile
include $(ADCORE)/ADApp/commonLibraryMakefile

#=============================
Expand Down

0 comments on commit 9dc5ed4

Please sign in to comment.