includes.h

来自「这个是我将UCOS移植到LPC系列的基本模版,大家可以下载下来参考下,和ZLG的」· C头文件 代码 · 共 46 行

H
46
字号
#ifndef __INCLUDES_H__
#define __INCLUDES_H__

#define SERIAL_DEBUG  1
#define LCD_DEBUG     0
#define NO_DEBUG      0

#if SERIAL_DEBUG+LCD_DEBUG+NO_DEBUG != 1
#error "should only enable one of SERIAL_DEBUG, LCD_DEBUG NO_DEBUG, but actually not" 
#endif

#if LCD_DEBUG >0
#define MY_DEBUG       LCD_Printf
#endif

#if SERIAL_DEBUG>0
#define MY_DEBUG	   printf
#endif

#if NO_DEBUG > 0

#define MY_DEBUG(x,...)   

#endif //end of #if DEBUG>0 




#include "stdio.h"
#include "string.h"
#include "stdlib.h"
#include "ucos_ii.h"

#include "bsp.h"
#include "lpc22xx.h"


//#include "app_cfg.h"




#endif


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?