1234567891011121314151617181920212223242526272829303132333435363738 |
- /*
- * 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
- */
- #include <rtthread.h>
- #include <components.h>
- void rt_init_thread_entry(void *parameter)
- {
- /* initialization RT-Thread Components */
- rt_components_init();
- }
- 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);
- if (tid != RT_NULL)
- rt_thread_startup(tid);
- return 0;
- }
|