asyn  4-32
paramErrors.h
Go to the documentation of this file.
1 /*
2  * asynPortDriverErrorStates.h
3  *
4  * Created on: Dec 13, 2011
5  * Author: hammonds
6  */
7 
8 #ifndef ASYNPORTDRIVERERRORSTATES_H_
9 #define ASYNPORTDRIVERERRORSTATES_H_
10 
11 #include <asynDriver.h>
12 
13 /* Extend asynManager error list. We should have a way of knowing what the last error in asyn is */
14 #define asynParamAlreadyExists (asynStatus)(asynDisabled + 1)
15 #define asynParamNotFound (asynStatus)(asynDisabled + 2)
16 #define asynParamWrongType (asynStatus)(asynDisabled + 3)
17 #define asynParamBadIndex (asynStatus)(asynDisabled + 4)
18 #define asynParamUndefined (asynStatus)(asynDisabled + 5)
19 
20 
21 #endif /* ASYNPORTDRIVERERRORSTATES_H_ */