simplegui/Transplant/MiniDevCore/BSP/inc/usart_stdio.h
Polarix c01535928a 2020-01-29:
针对新的代码架构更新了移植范例中的BSP程序和Demo程序。
修正了显示缓存中的逻辑错误。
删除了一些不使用的悬空文件。
2020-01-29 00:11:46 +08:00

15 lines
231 B
C

#ifndef _INCLUDE_USART_STDIO_H_
#define _INCLUDE_USART_STDIO_H_
#include "misc.h"
#include "stm32f10x_rcc.h"
#include "stm32f10x_gpio.h"
struct __FILE
{
int handle;
};
void USART_Stdio_Initialize(uint32_t Baudrate);
#endif