- moved OMS specific "irqdatastr" from motordrvCom.h to here.

- changed recv_rng and send_rng from C to C++ interface.
This commit is contained in:
Ron Sluiter
2003-10-28 16:40:05 +00:00
parent d44657de9a
commit ee91fbe028
+13 -2
View File
@@ -3,9 +3,9 @@ FILENAME... drvOms.h
USAGE... This file contains OMS driver "include" information that is
specific to OMS models VME8 and VME44.
Version: $Revision: 1.3 $
Version: $Revision: 1.4 $
Modified By: $Author: sluiter $
Last Modified: $Date: 2003-10-24 14:39:38 $
Last Modified: $Date: 2003-10-28 16:40:05 $
*/
/*
@@ -34,6 +34,7 @@ Last Modified: $Date: 2003-10-24 14:39:38 $
* -----------------
* .00 10-23-03 rls - VX2 spurious interrupt fix; enable all interrupts, including
* transmit buffer empty.
* .01 10-28-03 rls - moved OMS specific "irqdatastr" from motordrvCom.h to here.
*/
#ifndef INCdrvOmsh
@@ -94,4 +95,14 @@ struct vmex_motor
epicsUInt8 unused5[6];
};
struct irqdatastr /* Used only for VME44. */
{
/* Interrupt Handling control elements */
int irqErrno; /* Error indicator from isr */
epicsUInt8 irqEnable;
epicsRingPointer<char> *recv_rng; /* message receiving control */
epicsEvent *recv_sem;
epicsRingPointer<char> *send_rng; /* message transmitting control */
};
#endif /* INCdrvOmsh */