123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- /*
- * 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;
- }
- /*@}*/
|