KM3NeT CLB  2.0
KM3NeT CLB v2 Embedded Software
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
cfg_errata.h
1 /*
2  * KM3NeT CLB v2 Firmware
3  * ----------------------
4  *
5  * Copyright 2012-2017 KM3NeT Collaboration
6  *
7  * All Rights Reserved.
8  *
9  *
10  * File : cfg_errata.h
11  * Created : 24 apr. 2017
12  * Author : Vincent van Beveren
13  */
14 #ifndef CFG_ERRATA_H_
15 #define CFG_ERRATA_H_
16 
17 
18 //! 12V errata
19 #define ERRATA_HYDRO_12V 0x01
20 
21 //! Test errata
22 #define ERRATA_TEST 0x80
23 
24 // Only the lower 3 bytes are unique of the MAC
25 #define ARCA_DU1_BASE 0x30432B
26 
27 // My (vincent) test CLB
28 #define MY_TEST_BOARD 0x2FFE6B
29 
30 // List each ERRATA
31 #define ERRATA_LIST \
32  ERRATA(ARCA_DU1_BASE, ERRATA_HYDRO_12V)
33 
34 #endif /* CFG_ERRATA_H_ */