WS63 SDK 文档 7021f4f@fbb_ws63
ws63 和 ws63e 解决方案的 SDK 文档
载入中...
搜索中...
未找到
print_config.h
浏览该文件的文档.
1/*
2 * Copyright (c) HiSilicon (Shanghai) Technologies Co., Ltd. 2021-2021. All rights reserved.
3 * Description: RISCV31 print config interface for LiteOS
4 *
5 * Create: 2021-10-20
6 */
7#ifndef PRINT_CONFIG_H
8#define PRINT_CONFIG_H
9
10#include "debug_print.h"
11
12#define print_liteos(fmt, args...) PRINT(fmt, ##args)
13
14#define oam_trace_print(fmt, args...) PRINT(fmt, ##args)
15
16#endif