many, many changes

This commit is contained in:
Jeff Hill
2000-04-28 02:23:35 +00:00
parent 0e823a62c7
commit eee86b8106
47 changed files with 673 additions and 623 deletions
-2
View File
@@ -3,8 +3,6 @@ TOP=../../../..
include $(TOP)/configure/CONFIG
CXXCMPLR = STRICT
PROD_LIBS := cas ca gdd Com
cas_DIR = $(INSTALL_LIB)
ca_DIR = $(INSTALL_LIB)
@@ -4,8 +4,6 @@ TOP = $(CAS)/../..
include $(TOP)/config/CONFIG_BASE
CXXCMPLR = STRICT
USR_INCLUDES =
USR_LDFLAGS =
-5
View File
@@ -86,11 +86,6 @@ caStatus exPV::update(gdd &valueIn)
return cas;
}
aitTimeStamp ts = this->currentTime;
this->pValue->setTimeStamp (&ts);
this->pValue->setStat (epicsAlarmNone);
this->pValue->setSevr (epicsSevNone);
//
// post a value change event
//
+7 -1
View File
@@ -52,7 +52,7 @@ aitIndex exVectorPV::maxBound (unsigned dimension) const
void exVectorPV::scan()
{
caStatus status;
double radians;
double radians;
smartGDDPointer pDD;
aitFloat32 *pF, *pFE, *pCF;
float newValue;
@@ -256,6 +256,12 @@ caStatus exVectorPV::updateValue(gdd &valueIn)
if (gdds) {
return S_cas_noConvert;
}
aitTimeStamp ts;
valueIn.getTimeStamp (&ts);
pNewValue->setTimeStamp (&ts);
pNewValue->setStat (valueIn.getStat());
pNewValue->setSevr (valueIn.getSevr());
}
this->pValue = pNewValue;