FACT++  1.0
HeadersBIAS.h
Go to the documentation of this file.
1 #ifndef FACT_HeadersBIAS
2 #define FACT_HeadersBIAS
3 
4 namespace BIAS
5 {
6  enum
7  {
8  kNumBoards = 13,
11  };
12 
13  enum Command_t
14  {
15  // Communication commands
16  kCmdReset = 0,
17  kCmdRead = 1,
20 
21  // Internal command names
23  kUpdate = 0x10|kCmdRead,
25  kSynchronize = 0x1e,
26  };
27 
28  enum
29  {
30  kMaxDac = 0xfff
31  };
32 
33  namespace State
34  {
35  enum states_t
36  {
37  kDisconnected = 1,//StateMachineImp::kSM_UserMode,
46  kExpertMode, // 'forward' declaration to be used in StateMachineBias
48  };
49  }
50 }
51 
52 #endif
Command_t
Definition: HeadersBIAS.h:13