itpp_sci  1.0.0
it++ based simulation framework for scicoslab, scilab and scipy
_sim_enum_def.h
1 /*xxx
2 * \brief - definition of sim enumerated definitions
3 * \author maki
4 */
5 
6 #ifndef SIM_ENUM_DEF_H
7 #define SIM_ENUM_DEF_H
8 
12 
17 enum bert_fsm_state
18 {
19  BERT_FSM_RESET = 0,
20  BERT_FSM_RELOAD = 1,
21  BERT_FSM_PRESET = 2,
22  BERT_FSM_nSYNC = 3,
23  BERT_FSM_SYNC = 4
24 };
26 
30 
33 enum bert_adr
34 {
35  BERT_ADR_LSRX = 0,
36  BERT_ADR_LSRY = 1,
37  BERT_ADR_PRBS = 2
38 };
40 
41 enum win_type
42 {
43  WIN_RECT = 0,
44  WIN_HANNING = 1,
45  WIN_KAISER_BESSEL = 2,
46  WIN_FLAT_TOP = 3
47 };
48 
49 enum tedg_mode
50 {
51  TEDG_MODE_STD = 0,
52  TEDG_MODE_EDGE = 1,
53  TEDG_MODE_PUMP = 2
54 };
55 
56 #endif