console.h 308 B

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