From 0ec721ac4cbec0e0fcaefb95497dcd034f24cb4a Mon Sep 17 00:00:00 2001 From: "bernard.xiong" Date: Mon, 19 Oct 2009 12:33:15 +0000 Subject: [PATCH] add more options. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@109 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- bsp/stm3210/board.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bsp/stm3210/board.h b/bsp/stm3210/board.h index b5523d6912..b5f41584e6 100644 --- a/bsp/stm3210/board.h +++ b/bsp/stm3210/board.h @@ -38,6 +38,10 @@ #define STM32_SRAM_SIZE 64 #define STM32_SRAM_END (0x20000000 + STM32_SRAM_SIZE * 1024) +// Console on USART: <0=> no console <1=>USART 1 <2=>USART 2 <3=> USART 3 +// Default: 1 +#define STM32_CONSOLE_USART 1 + void rt_hw_board_led_on(int n); void rt_hw_board_led_off(int n); void rt_hw_board_init(void);