1 /*
2  * Copyright (c) 2006-2021, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2010-06-29     lgnq         the first version
9  *
10  * For       : NEC V850E
11  * Toolchain : IAR Embedded Workbench for V850 v3.71
12 */
13 
14 #include <rthw.h>
15 #include <rtthread.h>
16 
17 #include "uart.h"
18 #include "board.h"
19 
rt_hw_board_init(void)20 void rt_hw_board_init(void)
21 {
22 #ifdef RT_USING_UART0
23     rt_hw_uart_init();
24     rt_console_set_device("uart0");
25 #endif
26 
27     rt_kprintf("\r\n\r\nSystemInit......\r\n");
28 }
29