1 /* 2 * SPDX-License-Identifier: Apache-2.0 3 * 4 * Date Author Notes 5 * 2018-12-29 ChenYong first implementation 6 */ 7 8 #ifndef __CONSOLE_H__ 9 #define __CONSOLE_H__ 10 11 // TODO: 12 #include <rtthread.h> 13 14 #define console_printf rt_kprintf 15 16 #endif 17