119 lines
2.8 KiB
C
119 lines
2.8 KiB
C
|
/*
|
||
|
* File : application.c
|
||
|
* This file is part of RT-Thread RTOS
|
||
|
* COPYRIGHT (C) 2006, RT-Thread Development 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
|
||
|
* 2009-01-05 Bernard the first version
|
||
|
*/
|
||
|
|
||
|
#include <rtthread.h>
|
||
|
#include <stdio.h>
|
||
|
#include <board.h>
|
||
|
|
||
|
#ifdef RT_USING_DFS
|
||
|
/* dfs init */
|
||
|
#include <dfs_init.h>
|
||
|
/* dfs filesystem:ELM filesystem init */
|
||
|
#include <dfs_elm.h>
|
||
|
/* dfs Filesystem APIs */
|
||
|
#include <dfs_fs.h>
|
||
|
#endif
|
||
|
|
||
|
void rt_init_thread_entry(void* parameter)
|
||
|
{
|
||
|
#ifdef RT_USING_COMPONENTS_INIT
|
||
|
/* initialization RT-Thread Components */
|
||
|
rt_components_init();
|
||
|
#endif
|
||
|
|
||
|
rt_platform_init();
|
||
|
|
||
|
/* Filesystem Initialization */
|
||
|
#ifdef RT_USING_DFS
|
||
|
{
|
||
|
#ifdef RT_USING_DFS_ELMFAT
|
||
|
/* mount sd card fat partition 1 as root directory */
|
||
|
if (dfs_mount("sd0", "/", "elm", 0, 0) == 0)
|
||
|
{
|
||
|
rt_kprintf("fatfs initialized!\n");
|
||
|
}
|
||
|
else
|
||
|
rt_kprintf("fatfs initialzation failed!\n");
|
||
|
#endif
|
||
|
|
||
|
#ifdef RT_USING_DFS_ELMFAT
|
||
|
/* mount sd card fat partition 1 as root directory */
|
||
|
if (dfs_mount("nand0", "/nand", "uffs", 0, 0) == 0)
|
||
|
{
|
||
|
rt_kprintf("uffs initialized!\n");
|
||
|
}
|
||
|
else
|
||
|
rt_kprintf("uffs initialzation failed!\n");
|
||
|
#endif
|
||
|
|
||
|
#ifdef RT_USING_DFS_JFFS2
|
||
|
/* mount sd card fat partition 1 as root directory */
|
||
|
if (dfs_mount("nor", "/nor", "jffs2", 0, 0) == 0)
|
||
|
{
|
||
|
rt_kprintf("jffs2 initialized!\n");
|
||
|
}
|
||
|
else
|
||
|
rt_kprintf("jffs2 initialzation failed!\n");
|
||
|
#endif
|
||
|
|
||
|
}
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
void rt_test_thread_entry(void* parameter)
|
||
|
{
|
||
|
int i;
|
||
|
for(i=0; i<10; i++)
|
||
|
{
|
||
|
rt_kprintf("hello, world\n");
|
||
|
rt_thread_delay(100);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#include <finsh.h>
|
||
|
int rt_application_init()
|
||
|
{
|
||
|
rt_thread_t thread;
|
||
|
|
||
|
#if (RT_THREAD_PRIORITY_MAX == 32)
|
||
|
thread = rt_thread_create("init",
|
||
|
rt_init_thread_entry, RT_NULL,
|
||
|
2048, 8, 20);
|
||
|
#else
|
||
|
thread = rt_thread_create("init",
|
||
|
rt_init_thread_entry, RT_NULL,
|
||
|
2048, 80, 20);
|
||
|
#endif
|
||
|
|
||
|
if (thread != RT_NULL)
|
||
|
rt_thread_startup(thread);
|
||
|
|
||
|
thread = rt_thread_create("test",
|
||
|
rt_test_thread_entry, RT_NULL,
|
||
|
2048, 9, 20);
|
||
|
if (thread != RT_NULL)
|
||
|
rt_thread_startup(thread);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
extern int rt_application_init(void);
|
||
|
#if 1
|
||
|
FINSH_FUNCTION_EXPORT(rt_application_init, app init)
|
||
|
void testfun()
|
||
|
{}
|
||
|
FINSH_FUNCTION_EXPORT(testfun, test fun)
|
||
|
#endif
|
||
|
/*@}*/
|