From 0da5622981b2f92552e2880f57b0f0aa0302cd9f Mon Sep 17 00:00:00 2001 From: Ron Sluiter Date: Mon, 21 Jun 2004 21:04:03 +0000 Subject: [PATCH] Added OMS MAXv device driver. --- motorApp/OmsSrc/Makefile | 5 ++++- motorApp/OmsSrc/devOms.dbd | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) 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)