Orion
high-rate readout
hcc.hpp
Go to the documentation of this file.
1 
5 #pragma once
6 
7 #include "itk/db/types.hpp"
8 
9 #include "itk/db/chips/star_hcc0.hpp"
10 #include "itk/db/chips/star_hcc1.hpp"
11 
12 namespace itk::db::star::hcc {
13 
14  using reg_t = uint32_t;
15 
16  struct regmem_t : public record_t {
17  };
18 
19  struct calib_t : public record_t {
20  };
21 
22 
23  struct regmem1_t : public regmem_t {
24  REG_LIST_HCC1(PROC_REGT)
25  }; // regmem1_t
26 
27  struct regmem0_t : public regmem_t {
28  REG_LIST_HCC0(PROC_REGT)
29  }; // regmem0_t
30 
31 
32 } // itk::db::star::hcc
Common types form DB.
Base DB record linked by UUID.
Definition: types.hpp:26
Definition: hcc.hpp:19
Definition: hcc.hpp:27
Definition: hcc.hpp:23
Definition: hcc.hpp:16