From 9572d3e46ab081bf1a3440c9cc06d48a76daeb51 Mon Sep 17 00:00:00 2001 From: bernard Date: Mon, 21 Jul 2014 06:23:50 +0800 Subject: [PATCH] [bsp] Fix STM32F10x compiling warning. --- bsp/stm32f10x/drivers/board.c | 1 + bsp/stm32f10x/drivers/board.h | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/bsp/stm32f10x/drivers/board.c b/bsp/stm32f10x/drivers/board.c index a78428e711..d8374068c8 100644 --- a/bsp/stm32f10x/drivers/board.c +++ b/bsp/stm32f10x/drivers/board.c @@ -19,6 +19,7 @@ #include "stm32f10x.h" #include "stm32f10x_fsmc.h" #include "board.h" +#include "usart.h" #ifdef RT_USING_COMPONENTS_INIT #include diff --git a/bsp/stm32f10x/drivers/board.h b/bsp/stm32f10x/drivers/board.h index dc84db9c69..0fa68651b8 100644 --- a/bsp/stm32f10x/drivers/board.h +++ b/bsp/stm32f10x/drivers/board.h @@ -37,11 +37,13 @@ #define STM32_SRAM_SIZE 64 #define STM32_SRAM_END (0x20000000 + STM32_SRAM_SIZE * 1024) +// <<< Use Configuration Wizard in Context Menu >>> + /* USART driver select. */ #define RT_USING_UART1 #define RT_USING_UART2 #define RT_USING_UART3 -#endif /* __BOARD_H__ */ +void rt_hw_board_init(void); -// <<< Use Configuration Wizard in Context Menu >>> +#endif /* __BOARD_H__ */