rt-thread/bsp/ls1cdev/applications/application.c

43 lines
1.0 KiB
C
Raw Normal View History

2015-07-09 07:38:07 +08:00
/*
* File : application.c
* This file is part of RT-Thread RTOS
* COPYRIGHT (C) 2006-2012, 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
* 2010-06-25 Bernard first version
* 2011-08-08 lgnq modified for Loongson LS1B
* 2015-07-06 chinesebear modified for Loongson LS1C
2015-07-09 07:38:07 +08:00
*/
#include <rtthread.h>
#include "net/synopGMAC.h"
#include <lwip/api.h>
2015-07-09 07:38:07 +08:00
void rt_init_thread_entry(void *parameter)
{
/* initialization RT-Thread Components */
rt_components_init();
// <20><><EFBFBD><EFBFBD>EMAC<41><43>ʼ<EFBFBD><CABC>
rt_hw_eth_init();
2015-07-09 07:38:07 +08:00
}
int rt_application_init(void)
{
rt_thread_t tid;
/* create initialization thread */
tid = rt_thread_create("init",
rt_init_thread_entry, RT_NULL,
4096, RT_THREAD_PRIORITY_MAX/3, 20);
2015-07-09 07:38:07 +08:00
if (tid != RT_NULL)
rt_thread_startup(tid);
return 0;
}