Add act buffer index to readInt32()

This commit is contained in:
Anders Sandström
2020-11-24 17:43:45 +01:00
parent d89c34d041
commit f1e460e6dc

View File

@@ -950,6 +950,9 @@ asynStatus ecmcFFT::readInt32(asynUser *pasynUser, epicsInt32 *value) {
}else if( function == asynNfftId_ ){
*value = (epicsInt32)cfgNfft_;
return asynSuccess;
}else if( function == asynElementsInBuffer_){
*value = (epicsInt32)elementsInBuffer_;
return asynSuccess;
}
return asynError;