📄 debug.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 + -