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

/*********************************************************
*Copyright (C), 2015, Shanghai Eastsoft Microelectronics Co., Ltd.
*文件名: lib_printf.h
*作 者: AE Team
*版 本: V1.01
*日 期: 2021/06/09
*描 述: Printf功能库函数头文件
*备 注:
本软件仅供学习和演示使用,对用户直接引用代码所带来的风险或后果不承担任何法律责任。
**********************************************************/
#ifndef __LIBPRINTF_H__
#define __LIBPRINTF_H__
#include "lib_uart.h"
#include <stdio.h>
#include <type.h>
#ifdef __clang__
ErrorStatus UART_printf(uint8_t *Data, ...);
#define printf UART_printf
#endif
#endif