显示屏驱动源代码

源代码在线查看: printf.h

软件大小: 2605 K
上传用户: haibokaishi2006
关键词: 显示屏驱动 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				#ifndef __PRINTF__
				#define __PRINTF__
				
				#define _outchar(c) while(1) { if( !RS_Xbusy ) { SBUF = c; RS_Xbusy=1; break; } }
				#define Putch(c) _outchar(c)
				
				#ifdef SERIAL
				
				 void Printf ( const char CODE_P *fmt, ... );
				 void Puts ( CODE_P char *ptr );
				
				#else
				
				 #undef  DEBUG
				 #define Printf(a,b)	//
				 #define Puts(a)   		//
				
				#endif
				
				
				#ifndef DEBUG
				
				 #define dPuts(a)		//
				 #define wPuts(a)		//
				 #define ePuts(a)		//
				
				#else
				
				 void dPrintf( const char CODE_P *fmt, ... );
				 void wPrintf( const char CODE_P *fmt, ... );
				 void ePrintf( const char CODE_P *fmt, ... );
				
				 void dPuts( CODE_P char *ptr );
				 void wPuts( CODE_P char *ptr );
				 void ePuts( CODE_P char *ptr );
				
				#endif	// DEBUG
				
				BYTE Getch(void);
				BYTE Getche(void);
				
				
				#endif	//__PRINTF__
							

相关资源