You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
711 B

4 years ago
  1. /*********************************************************
  2. *Copyright (C), 2015, Shanghai Eastsoft Microelectronics Co., Ltd.
  3. *: lib_printf.h
  4. * : AE Team
  5. * : V1.01
  6. * : 2021/06/09
  7. * : Printf功能库函数头文件
  8. * :
  9. 使
  10. **********************************************************/
  11. #ifndef __LIBPRINTF_H__
  12. #define __LIBPRINTF_H__
  13. #include "lib_uart.h"
  14. #include <stdio.h>
  15. #include <type.h>
  16. #ifdef __clang__
  17. ErrorStatus UART_printf(uint8_t *Data, ...);
  18. #define printf UART_printf
  19. #endif
  20. #endif