1 /* 2 * Copyright (c) 2020-2021, WangHuachen 3 * 4 * SPDX-License-Identifier: MIT 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2020-11-30 WangHuachen the first version 9 */ 10 #ifndef XIL_PRINTF_H 11 #define XIL_PRINTF_H 12 13 #include <rtthread.h> 14 15 #ifdef __cplusplus 16 extern "C" { 17 #endif 18 19 #define xil_printf rt_kprintf 20 21 #ifdef __cplusplus 22 } 23 #endif 24 25 #endif /* end of protection macro */ 26