mcl_config.h
Go to the documentation of this file.
1 
9 #ifndef MCL_CONFIG_H_
10 #define MCL_CONFIG_H_
11 
12 #define MCL_LOG_LEVEL_VERBOSE 1
13 #define MCL_LOG_LEVEL_DEBUG 2
14 #define MCL_LOG_LEVEL_INFO 3
15 #define MCL_LOG_LEVEL_WARN 4
16 #define MCL_LOG_LEVEL_ERROR 5
17 #define MCL_LOG_LEVEL_FATAL 6
18 #define MCL_LOG_LEVEL_NONE 0xFF
19 
24 #ifndef HAVE_FILE_SYSTEM_
25 #ifdef __MBED__
26 #define HAVE_FILE_SYSTEM_ 0
27 #else
28 #define HAVE_FILE_SYSTEM_ 1
29 #endif
30 #endif
31 
43 #ifndef MCL_LOG_LEVEL
44 #define MCL_LOG_LEVEL MCL_LOG_LEVEL_INFO
45 #endif
46 
47 #endif //MCL_CONFIG_H_