mirror of
https://gitee.com/Polarix/simplegui.git
synced 2025-06-17 13:37:52 +00:00
15 lines
231 B
C
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
|