WS63 SDK 文档 7021f4f@fbb_ws63
ws63 和 ws63e 解决方案的 SDK 文档
载入中...
搜索中...
未找到
los_printf.h 文件参考
#include "stdarg.h"
#include "los_config.h"
#include "los_typedef.h"
los_printf.h 的引用(Include)关系图:
此图展示该文件直接或间接的被哪些文件引用了:

浏览源代码.

宏定义

#define LOS_EMG_LEVEL   0
 
#define LOS_COMMOM_LEVEL   (LOS_EMG_LEVEL + 1)
 
#define LOS_ERR_LEVEL   (LOS_COMMOM_LEVEL + 1)
 
#define LOS_WARN_LEVEL   (LOS_ERR_LEVEL + 1)
 
#define LOS_INFO_LEVEL   (LOS_WARN_LEVEL + 1)
 
#define LOS_DEBUG_LEVEL   (LOS_INFO_LEVEL + 1)
 
#define PRINT_LEVEL   LOS_ERR_LEVEL
 
#define diag_printf   dprintf
 
#define PRINT_DEBUG(fmt, ...)
 Format and print debug log.
 
#define PRINT_INFO(fmt, ...)
 Format and print information log.
 
#define PRINT_WARN(fmt, ...)
 Format and print warning log.
 
#define PRINT_ERR(fmt, ...)
 Format and print error log.
 
#define PRINTK(fmt, ...)   dprintf(fmt, ##__VA_ARGS__)
 Format and print common log.
 
#define PRINT_EMG(fmt, ...)
 Format and print emergency log.
 
#define PRINT_RELEASE(fmt, ...)   dprintf(fmt, ##__VA_ARGS__)
 Format and print log.
 

类型定义

typedef void(* pf_OUTPUT) (const CHAR *fmt,...)
 

函数

void LOS_Printf (const CHAR *fmt,...)
 Format and print data.
 

宏定义说明

◆ diag_printf

#define diag_printf   dprintf

类型定义说明

◆ pf_OUTPUT

typedef void(* pf_OUTPUT) (const CHAR *fmt,...)