source: fact/FADctrl/FADFormat.h@ 10353

Last change on this file since 10353 was 10224, checked in by neise, 14 years ago
new FAD data format implemented
File size: 2.4 KB
Line 
1#ifndef FADFORMAT_H_SEEN
2#define FADFORMAT_H_SEEN
3
4#include <stdint.h>
5
6//
7// Commands for FAD
8//
9#define CMD_Start 0x2200 // Start Run
10#define CMD_Stop 0x2300 // Stop Run
11#define CMD_mode_command 0x3000 // Set Socket mode to: command mode
12#define CMD_mode_all_sockets 0x3100// Set Socket mode to: daq mode
13
14#define CMD_Trigger 0xA000 // single trigger
15#define CMD_DENABLE 0x0600 // DENABLE line HIGH
16#define CMD_DDISABLE 0x0700 // DENABLE line LOW
17#define CMD_DWRITE_RUN 0x0800 // DWRITE possibly HIGH
18#define CMD_DWRITE_STOP 0x0900 // DWRITE always LOW
19#define CMD_SCLK_ON 0x1000
20#define CMD_SCLK_OFF 0x1100
21#define CMD_PS_DIRINC 0x1200
22#define CMD_PS_DIRDEC 0x1300
23#define CMD_PS_DO 0x1400
24#define CMD_PS_RESET 0x1700
25#define CMD_SRCLK_ON 0x1500
26#define CMD_SRCLK_OFF 0x1600
27#define CMD_Trigger_C 0xB000 // continous trigger
28#define CMD_Trigger_S 0x2000 // stop continous trigger
29#define CMD_Read 0x0A00 // read from Config-RAM
30#define CMD_Write 0x0500 // write to Config-RAM
31
32#define CMD_TRIGGERS_ON 0x1800 // enables the trigger line
33#define CMD_TRIGGERS_OFF 0x1900 // disables the trigger line
34
35//
36// Other definitions
37//
38#define MAX_ADDR 0xFF // highest address in Config-RAM
39#define BADDR_ROI 0x00 // Baseaddress ROI-Values
40#define BADDR_DAC 0x24 // Baseaddress DAC-Values
41#define BADDR_CONT_TRIGGER_TIME 0x2C // Baseaddress for the continouus trigger timing.
42#define MAX_VAL 65535
43#define MAX_ROIVAL 1024
44#define MAX_DACVAL 65535
45
46const unsigned int NChannels = 9;
47const unsigned int NBins = 1024;
48const unsigned int NChips = 4;
49const unsigned int NTemp = 4;
50const unsigned int NDAC = 8;
51
52//
53// Data structures
54//
55typedef struct {
56
57 uint16_t start_package_flag;
58 uint16_t package_length;
59 uint16_t version_no;
60 uint16_t PLLLCK;
61
62 uint16_t trigger_crc;
63 uint16_t trigger_type;
64 uint32_t trigger_id;
65
66 uint32_t fad_evt_counter;
67 uint32_t REFCLK_frequency;
68
69 uint16_t board_id;
70 uint8_t zeroes;
71 int8_t adc_clock_phase_shift;
72 uint16_t number_of_triggers_to_generate;
73 uint16_t trigger_generator_prescaler;
74
75 uint64_t DNA;
76
77 uint32_t time;
78 uint32_t fad_status;
79
80 int16_t drs_temperature[NTemp];
81
82 uint16_t dac[NDAC];
83
84} __attribute__((__packed__)) PEVNT_HEADER;
85
86typedef struct {
87uint16_t id;
88uint16_t start_cell;
89uint16_t roi;
90uint16_t filling;
91uint16_t adc_data[];
92} __attribute__((__packed__)) PCHANNEL;
93typedef struct {
94uint16_t package_crc;
95uint16_t end_package_flag;
96} __attribute__((__packed__)) PEVNT_FOOTER;
97
98#endif
Note: See TracBrowser for help on using the repository browser.