no-OS
app_config.h
Go to the documentation of this file.
1 /***************************************************************************/
35 #ifndef CONFIG_H_
36 #define CONFIG_H_
37 
38 // #define HAVE_VERBOSE_MESSAGES /* Recommended during development prints errors and warnings */
39 // #define DEBUG /* For Debug purposes only */
40 
41 /******************************************************************************/
42 /****************************** Carrier Vendor ********************************/
43 /******************************************************************************/
44 #define XILINX
45 
46 /******************************************************************************/
47 /**************************** Platform used ***********************************/
48 /******************************************************************************/
49 //#define PLATFORM_AC701
50 //#define PLATFORM_KC705
51 //#define PLATFORM_VC707
52 //#define PLATFORM_ZC702
53 //#define PLATFORM_ZC706
54 //#define PLATFORM_ZED
55 
56 #if !defined(PLATFORM_AC701) && !defined(PLATFORM_KC705) && \
57  !defined(PLATFORM_VC707) && !defined(PLATFORM_ZC702) && \
58  !defined(PLATFORM_ZC706) && !defined(PLATFORM_ZED)
59 #error "ERROR: Must define a platform in app_config.h"
60 #endif
61 
62 #endif