当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 22

Tony.K/dbugLib Prj
暂停

forked from embedded-lib/dbugLib Prj
暂停
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ulog.h 2.63 KB
一键复制 编辑 原始数据 按行查看 历史
zhangjinxing 提交于 2017-07-20 17:27 . 增加readme文件
/***********************************************************************************************
_____________________________________杭州大仁科技有限公司_______________________________________
@文 件 名: ulog.h
@日 期: 2016.12.28
@作 者: 张诗星
@文件说明:
ulog 微型的日志调试工具
支持日志记录级别设置
G_DEBUG -- 调试级别,记录非常详细的步骤信息
G_TRACE -- 跟踪级别,记录重要的跟踪信息
G_WARNG -- 警告级别,记录警告信息
G_ERROR -- 错误级别,记录错误信息
ulog支持基于宏和函数的两种实现方式
@修订说明:
***********************************************************************************************/
#ifndef _U_LOG_H_
#define _U_LOG_H_
// **************************************************************************
// 头文件
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
// **************************************************************************
// 用户配置
// log级别
#define LOG_CFG_LEVEL (G_DEBUG)
// 字符输出函数
#define LOG_PUT_CHAR(C) putchar(C)
// 日志记录接口
#define LOG_PRINTF(format, ...) printf(format, ##__VA_ARGS__)
// **************************************************************************
// 宏定义
//日志记录级别
#define G_DEBUG (0) /* 信息用来显示详细的执行信息和步骤 */
#define G_TRACE (1) /* 用来跟踪特定的主要信息 */
#define G_WARNG (2) /* 警告级别 */
#define G_ERROR (3) /* 错误级别 */
#define G_NONE (4) /* 关闭LOG */
// 定义打印样式
#define LOG_FUN(LEVESTR,format, ...) \
LOG_PRINTF("["LEVESTR"] <"__FILE__": %d"">: " format "\r\n",__LINE__,##__VA_ARGS__)
// **************************************************************************
// 接口定义
//兼容C C++混合编程
#ifdef __cplusplus
extern "C" {
#endif
void log_printmem(void* buff, uint32_t size, uint32_t addr, uint8_t linsize);
#ifdef __cplusplus
}
#endif
#if LOG_CFG_LEVEL>=G_NONE
/* 关闭LOG */
#define uLOG(LEVE,format, ...) /*(0)*/
#define uLOG_MEM(aLEVE,ADDRESS,LEN) (0)
#else
/* 使用宏实现 */
#define uLOG(aLEVE,format, ...) \
do { \
if (aLEVE>=LOG_CFG_LEVEL) { \
LOG_FUN(#aLEVE,format,##__VA_ARGS__); \
} \
} while(0)
#define uLOG_MEM(aLEVE,ADDRESS,LEN,format, ...) \
do { \
if (aLEVE>=LOG_CFG_LEVEL) { \
LOG_FUN(#aLEVE,format,##__VA_ARGS__); \
log_printmem(ADDRESS,LEN,0,16); \
} \
} while(0)
#endif
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/TonyK922/dbugLib-Prj.git
[email protected]:TonyK922/dbugLib-Prj.git
TonyK922
dbugLib-Prj
dbugLib Prj
master

搜索帮助