console.h 292 B

1234567891011121314151617
  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. #define MODLOG_DFLT(ml_lvl_, ...)
  13. #endif