浏览该文件的文档.
27 #ifndef APP_CFG_PRESENT
28 #define APP_CFG_PRESENT
59 #define APP_TASK_START_PRIO 3
60 #define APP_TASK_USER_IF_PRIO 4
61 #define APP_TASK_KBD_PRIO 5
72 #define APP_TASK_START_STK_SIZE 256
73 #define APP_TASK_USER_IF_STK_SIZE 256
74 #define APP_TASK_KBD_STK_SIZE 256
82 #define LIB_STR_CFG_FP_EN DEF_DISABLED
84 #define LIB_MEM_CFG_ARG_CHK_EXT_EN DEF_ENABLED
85 #define LIB_MEM_CFG_OPTIMIZE_ASM_EN DEF_ENABLED
86 #define LIB_MEM_CFG_ALLOC_EN DEF_ENABLED
87 #define LIB_MEM_CFG_HEAP_SIZE 800u
95 extern int BSP_Print(
const char *fmt, ...);
96 #define TRACE_LEVEL_OFF 0
97 #define TRACE_LEVEL_INFO 1
98 #define TRACE_LEVEL_DBG 2
100 #define APP_TRACE_LEVEL TRACE_LEVEL_OFF
101 #define APP_TRACE BSP_Print
103 #define APP_TRACE_INFO(x) ((APP_TRACE_LEVEL >= TRACE_LEVEL_INFO) ? (void)(APP_TRACE x) : (void)0)
104 #define APP_TRACE_DBG(x) ((APP_TRACE_LEVEL >= TRACE_LEVEL_DBG) ? (void)(APP_TRACE x) : (void)0)