26 lines
393 B
C
26 lines
393 B
C
/*
|
|
* Copyright (c) 2020-2021, WangHuachen
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2020-11-30 WangHuachen the first version
|
|
*/
|
|
#ifndef XIL_PRINTF_H
|
|
#define XIL_PRINTF_H
|
|
|
|
#include <rtthread.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define xil_printf rt_kprintf
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* end of protection macro */
|