mirror of
https://gitee.com/Polarix/simplegui.git
synced 2025-06-17 13:37:52 +00:00
16 lines
262 B
C
16 lines
262 B
C
#ifndef _INCLUDE_SYSTEM_IO_REDIRECT_H_
|
|
#define _INCLUDE_SYSTEM_IO_REDIRECT_H_
|
|
#include "misc.h"
|
|
#include "stm32f10x_rcc.h"
|
|
#include "stm32f10x_gpio.h"
|
|
#include "Usart.h"
|
|
|
|
struct __FILE
|
|
{
|
|
int handle;
|
|
};
|
|
|
|
void Initialize_StdioUart(uint32_t Baudrate);
|
|
|
|
#endif
|