mirror of
https://gitee.com/Polarix/simplegui.git
synced 2025-06-17 05:27:52 +00:00

将tab键替换为空格 删除每行末尾无用的空格 # Conflicts: # DemoProc/src/DemoProc.c # GUI/inc/SGUI_Basic.h # GUI/inc/SGUI_Typedef.h # GUI/src/SGUI_Basic.c # GUI/src/SGUI_Curve.c # GUI/src/SGUI_Text.c
15 lines
237 B
C
15 lines
237 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
|