⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 debug.h

📁 opentcp_mcf5282原代码
💻 H
字号:
/*********************************************************************************
File:			debug.h

Date:			22.1.2004

Version:		0.1

Author:			Jari Lahti (jari.lahti@violasystems.com)

Description:	Simple debug system

Version Info:	22.1.2004 - First version (JaL)

*********************************************************************************/

#ifndef __INCLUDE_OPENTCP_DEBUG_H__
#define __INCLUDE_OPENTCP_DEBUG_H__

#include "src/common/m5282evb.h"
#include "src/common/stdlib.h"

#define OPENTCP_DEBUG	0	/* Enabled of disabled	*/

#if OPENTCP_DEBUG == 1
#define DEBUGOUT(c)	printf(c)
#else
#define DEBUGOUT(c) {}
#endif

#endif	//guard

/* EOF	*/

⌨️ 快捷键说明

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