diff --git a/motorApp/OmsSrc/Makefile b/motorApp/OmsSrc/Makefile index 42fa8480..6a77772d 100644 --- a/motorApp/OmsSrc/Makefile +++ b/motorApp/OmsSrc/Makefile @@ -5,7 +5,7 @@ include $(TOP)/configure/CONFIG # ADD MACRO DEFINITIONS AFTER THIS LINE # The following are used for debugging messages. -#USR_CXXFLAGS += -DDEBUG +#!USR_CXXFLAGS += -DDEBUG DBD += devOms.dbd @@ -20,6 +20,9 @@ SRCS += devOms.cc drvOms.cc # The following is required for the OMS VME58 (i.e., devOms58) device driver. SRCS += devOms58.cc drvOms58.cc +# The following is required for the OMS MAXv device driver. +SRCS += devMAXv.cc drvMAXv.cc + include $(TOP)/configure/RULES #---------------------------------------- # ADD RULES AFTER THIS LINE diff --git a/motorApp/OmsSrc/devOms.dbd b/motorApp/OmsSrc/devOms.dbd index 311599f7..07173420 100644 --- a/motorApp/OmsSrc/devOms.dbd +++ b/motorApp/OmsSrc/devOms.dbd @@ -1,6 +1,8 @@ # Oregon Micro Systems VME8/44 and VME58 Driver support. device(motor,VME_IO,devOMS,"OMS VME8/44") device(motor,VME_IO,devOms58,"OMS VME58") +device(motor,VME_IO,devMAXv,"OMS MAXv") driver(drvOms) driver(drvOms58) +driver(drvMAXv)