console.h 258 B

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