embkernel
 All Classes Functions Variables Typedefs Groups Pages
LibCfg.hpp
1 //------------------------------------------------------------------------------
2 //This file is part of embKernel.
3 //See license.txt for the full license governing this code.
4 //------------------------------------------------------------------------------
5 
6 #ifndef LIB_CFG_HPP_
7 #define LIB_CFG_HPP_
8 
9 #include "CfgLib.hpp"
10 
11 #ifndef LIB_CFG_DEBUG_ENABLE
12 #warning LIB_CFG_DEBUG_ENABLE undefined
13 #define LIB_CFG_DEBUG_ENABLE 0
14 #endif
15 
16 #ifndef LIB_CFG_USER_DEBUG_ENABLE
17 #warning LIB_CFG_USER_DEBUG_ENABLE undefined
18 #define LIB_CFG_USER_DEBUG_ENABLE 0
19 #endif
20 
21 #ifndef LIB_CFG_LOG_BUFFER_SIZE
22 #warning LIB_CFG_LOG_BUFFER_SIZE undefined
23 #define LIB_CFG_LOG_BUFFER_SIZE 4
24 #endif
25 
26 #ifndef LIB_CFG_PRINTF_FLOAT_SUPPORT_ENABLE
27 #warning LIB_CFG_PRINTF_FLOAT_SUPPORT_ENABLE undefined
28 #define LIB_CFG_PRINTF_FLOAT_SUPPORT_ENABLE 0
29 #endif
30 
31 #ifndef LIB_CFG_LITTLE_ENDIAN
32 #warning LIB_CFG_LITTLE_ENDIAN undefined
33 #define LIB_CFG_LITTLE_ENDIAN 1
34 #endif
35 
36 #endif /* LIB_CFG_HPP_ */