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
|
2015-10-15 12:22:16 +08:00
|
|
|
|
* 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>
|
2017-08-23 15:46:51 +08:00
|
|
|
|
#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();
|
2017-08-24 15:03:08 +08:00
|
|
|
|
|
|
|
|
|
// <20><><EFBFBD><EFBFBD>EMAC<41><43>ʼ<EFBFBD><CABC>
|
2017-08-23 15:46:51 +08:00
|
|
|
|
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,
|
2015-10-15 12:22:16 +08:00
|
|
|
|
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;
|
|
|
|
|
}
|