2013-01-08 22:40:58 +08:00
|
|
|
/*
|
|
|
|
* File : application.c
|
|
|
|
* This file is part of RT-Thread RTOS
|
2015-09-30 16:26:40 +08:00
|
|
|
* COPYRIGHT (C) 2006 - 2015, RT-Thread Development Team
|
2013-01-08 22:40:58 +08:00
|
|
|
*
|
2015-09-30 16:26:40 +08:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2013-01-08 22:40:58 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2009-01-05 Bernard the first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rtthread.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <board.h>
|
|
|
|
|
2017-11-30 23:56:52 +08:00
|
|
|
extern int platform_init(void);
|
2018-03-11 14:35:50 +08:00
|
|
|
extern int platform_post_init(void);
|
2017-11-30 23:56:52 +08:00
|
|
|
extern int mnt_init(void);
|
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
void rt_init_thread_entry(void *parameter)
|
|
|
|
{
|
2017-10-20 13:26:47 +08:00
|
|
|
rt_kprintf("Hello RT-Thread!\n");
|
2017-11-30 23:56:52 +08:00
|
|
|
|
|
|
|
platform_init();
|
|
|
|
mnt_init();
|
2017-12-13 20:38:56 +08:00
|
|
|
|
2018-03-11 14:35:50 +08:00
|
|
|
platform_post_init();
|
|
|
|
|
|
|
|
#if defined(PKG_USING_GUIENGINE) && defined(GUIENGINE_USING_DEMO)
|
2017-12-13 20:38:56 +08:00
|
|
|
{
|
|
|
|
extern int rt_gui_demo_init(void);
|
|
|
|
rt_gui_demo_init();
|
|
|
|
}
|
|
|
|
#endif
|
2013-01-08 22:40:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int rt_application_init()
|
|
|
|
{
|
|
|
|
rt_thread_t tid;
|
|
|
|
|
|
|
|
tid = rt_thread_create("init",
|
|
|
|
rt_init_thread_entry, RT_NULL,
|
|
|
|
2048, RT_THREAD_PRIORITY_MAX / 3, 20);
|
|
|
|
|
|
|
|
if (tid != RT_NULL)
|
|
|
|
rt_thread_startup(tid);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|