4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-15 13:09:21 +08:00
bernard.xiong 0c13711396 Add taihu bsp (PPC405)
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2350 bbd45198-f89e-11dd-88c7-29a3b14d5316
2012-10-14 23:28:37 +00:00

25 lines
514 B
C

/*
* File : board.c
* This file is part of RT-Thread RTOS
* COPYRIGHT (C) 2006, RT-Thread Develop Team
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rt-thread.org/license/LICENSE
*
* Change Logs:
* Date Author Notes
* 2011-04-16 first version
*/
#include <rtthread.h>
#include <rthw.h>
#include "board.h"
void rt_hw_board_init()
{
rt_hw_serial_init();
rt_console_set_device("uart1");
}