EVE 1.0
nrf_wrapper.h
1 #ifndef NRF_WRAPPER_H_INCLUDED
2 #define NRF_WRAPPER_H_INCLUDED
3 
4 /*The file replaces NRF SDK's nrf.h to make the project compatible with Eclipse code analyzer */
5 
6  /* Family selection for family includes. */
7  #if defined (NRF51)
8  #include "nrf51.h"
9  #include "nrf51_bitfields.h"
10  #include "nrf51_deprecated.h"
11  #elif defined (NRF52)
12  #include "nrf52.h"
13  #include "nrf52_bitfields.h"
14  #include "nrf51_to_nrf52.h"
15  #else
16  #error "Device family must be defined. See nrf.h."
17  #endif /* NRF51, NRF52 */
18 
19  #include "compiler_abstraction.h"
20 
21 #endif