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