2009-12-11 09:42:01 +00:00
|
|
|
/*
|
2009-12-25 12:20:04 +00:00
|
|
|
* File : application.c
|
2009-12-11 09:42:01 +00:00
|
|
|
* 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
|
2009-12-25 12:20:04 +00:00
|
|
|
* http://www.rt-thread.org/license/LICENSE
|
2009-12-11 09:42:01 +00:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2007-11-20 Yi.Qiu add rtgui application
|
|
|
|
* 2008-6-28 Bernard no rtgui init
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2009-12-18 05:25:41 +00:00
|
|
|
* @addtogroup mini2440
|
|
|
|
*/
|
2012-06-08 08:13:44 +00:00
|
|
|
|
2009-12-11 09:42:01 +00:00
|
|
|
/*@{*/
|
|
|
|
|
2009-12-18 05:25:41 +00:00
|
|
|
#include <rtthread.h>
|
2010-05-14 16:52:21 +00:00
|
|
|
#include "touch.h"
|
2010-12-23 03:13:14 +00:00
|
|
|
#include "lcd.h"
|
2009-12-27 10:58:45 +00:00
|
|
|
#include "led.h"
|
2010-12-23 03:13:14 +00:00
|
|
|
#include "dm9000.h"
|
2009-12-11 09:42:01 +00:00
|
|
|
|
|
|
|
#ifdef RT_USING_DFS
|
|
|
|
/* dfs init */
|
|
|
|
#include <dfs_init.h>
|
2010-03-18 05:43:21 +00:00
|
|
|
/* dfs filesystem:ELM FatFs filesystem init */
|
|
|
|
#include <dfs_elm.h>
|
2009-12-11 09:42:01 +00:00
|
|
|
/* dfs Filesystem APIs */
|
|
|
|
#include <dfs_fs.h>
|
2011-01-21 10:21:26 +00:00
|
|
|
#ifdef RT_USING_DFS_UFFS
|
2011-01-16 13:44:04 +00:00
|
|
|
/* dfs filesystem:UFFS filesystem init */
|
|
|
|
#include <dfs_uffs.h>
|
2009-12-11 09:42:01 +00:00
|
|
|
#endif
|
2011-01-21 10:21:26 +00:00
|
|
|
#endif
|
2009-12-11 09:42:01 +00:00
|
|
|
|
|
|
|
#ifdef RT_USING_LWIP
|
2009-12-18 05:25:41 +00:00
|
|
|
#include <netif/ethernetif.h>
|
2009-12-11 09:42:01 +00:00
|
|
|
#endif
|
|
|
|
|
2009-12-29 15:08:26 +00:00
|
|
|
#ifdef RT_USING_RTGUI
|
2010-09-13 01:12:51 +00:00
|
|
|
#include <rtgui/rtgui.h>
|
2009-12-29 15:08:26 +00:00
|
|
|
#endif
|
|
|
|
|
2010-10-02 12:40:18 +00:00
|
|
|
#ifdef RT_USING_FTK
|
|
|
|
#include "ftk.h"
|
|
|
|
#endif
|
|
|
|
|
2010-10-02 14:01:50 +00:00
|
|
|
#define RT_INIT_THREAD_STACK_SIZE (2*1024)
|
|
|
|
|
2010-11-17 23:40:33 +00:00
|
|
|
#ifdef RT_USING_DFS_ROMFS
|
|
|
|
#include <dfs_romfs.h>
|
|
|
|
#endif
|
|
|
|
|
2011-05-23 01:33:31 +00:00
|
|
|
#ifdef RT_USING_FTK
|
|
|
|
static int argc = 1;
|
|
|
|
static char* argv[] = {"ftk", NULL};
|
|
|
|
|
2012-06-08 08:13:44 +00:00
|
|
|
void rt_ftk_thread_entry(void *parameter)
|
2011-05-23 01:33:31 +00:00
|
|
|
{
|
2012-06-08 08:13:44 +00:00
|
|
|
int FTK_MAIN(int argc, char *argv[]);
|
2011-05-23 01:33:31 +00:00
|
|
|
|
|
|
|
FTK_MAIN(argc, argv);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2012-06-08 08:13:44 +00:00
|
|
|
void rt_init_thread_entry(void *parameter)
|
2009-12-11 09:42:01 +00:00
|
|
|
{
|
2009-12-18 05:25:41 +00:00
|
|
|
/* Filesystem Initialization */
|
|
|
|
#ifdef RT_USING_DFS
|
|
|
|
{
|
|
|
|
/* init the device filesystem */
|
|
|
|
dfs_init();
|
2009-12-11 09:42:01 +00:00
|
|
|
|
2010-04-26 10:32:33 +00:00
|
|
|
#if defined(RT_USING_DFS_ELMFAT)
|
2009-12-18 05:25:41 +00:00
|
|
|
/* init the elm chan FatFs filesystam*/
|
|
|
|
elm_init();
|
|
|
|
/* mount sd card fat partition 1 as root directory */
|
|
|
|
if (dfs_mount("sd0", "/", "elm", 0, 0) == 0)
|
|
|
|
{
|
|
|
|
rt_kprintf("File System initialized!\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rt_kprintf("File System initialzation failed!\n");
|
2009-12-11 09:42:01 +00:00
|
|
|
#endif
|
2010-10-29 06:01:04 +00:00
|
|
|
|
2010-11-17 23:40:33 +00:00
|
|
|
#if defined(RT_USING_DFS_ROMFS)
|
|
|
|
dfs_romfs_init();
|
|
|
|
if (dfs_mount(RT_NULL, "/rom", "rom", 0, &romfs_root) == 0)
|
|
|
|
{
|
|
|
|
rt_kprintf("ROM File System initialized!\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rt_kprintf("ROM File System initialzation failed!\n");
|
|
|
|
#endif
|
|
|
|
|
2010-10-29 06:01:04 +00:00
|
|
|
#if defined(RT_USING_DFS_DEVFS)
|
|
|
|
devfs_init();
|
|
|
|
if (dfs_mount(RT_NULL, "/dev", "devfs", 0, 0) == 0)
|
|
|
|
rt_kprintf("Device File System initialized!\n");
|
|
|
|
else
|
|
|
|
rt_kprintf("Device File System initialzation failed!\n");
|
|
|
|
|
2010-11-17 23:40:33 +00:00
|
|
|
#ifdef RT_USING_NEWLIB
|
2010-10-29 06:01:04 +00:00
|
|
|
/* init libc */
|
|
|
|
libc_system_init("uart0");
|
2010-11-17 23:40:33 +00:00
|
|
|
#endif
|
2010-10-29 06:01:04 +00:00
|
|
|
#endif
|
2011-01-16 13:44:04 +00:00
|
|
|
|
2011-06-08 00:50:04 +00:00
|
|
|
#if defined(RT_USING_DFS) && defined(RT_USING_LWIP) && defined(RT_USING_DFS_NFS)
|
|
|
|
/* NFSv3 Initialization */
|
|
|
|
nfs_init();
|
|
|
|
|
|
|
|
if (dfs_mount(RT_NULL, "/nfs", "nfs", 0, RT_NFS_HOST_EXPORT) == 0)
|
|
|
|
rt_kprintf("NFSv3 File System initialized!\n");
|
|
|
|
else
|
|
|
|
rt_kprintf("NFSv3 File System initialzation failed!\n");
|
|
|
|
#endif
|
|
|
|
|
2011-01-21 14:14:32 +00:00
|
|
|
#if defined(RT_USING_DFS_UFFS)
|
2011-01-16 13:44:04 +00:00
|
|
|
/* init the uffs filesystem */
|
|
|
|
dfs_uffs_init();
|
|
|
|
|
|
|
|
/* mount flash device as flash directory */
|
2012-06-08 08:13:44 +00:00
|
|
|
if (dfs_mount("nand0", "/nand0", "uffs", 0, 0) == 0)
|
2011-01-16 13:44:04 +00:00
|
|
|
rt_kprintf("UFFS File System initialized!\n");
|
|
|
|
else
|
|
|
|
rt_kprintf("UFFS File System initialzation failed!\n");
|
|
|
|
#endif
|
2009-12-18 05:25:41 +00:00
|
|
|
}
|
2009-12-11 09:42:01 +00:00
|
|
|
#endif
|
|
|
|
|
2010-05-14 16:52:21 +00:00
|
|
|
#ifdef RT_USING_RTGUI
|
|
|
|
{
|
2012-06-19 00:48:11 +00:00
|
|
|
extern void rtgui_system_server_init(void);
|
|
|
|
|
2011-06-19 02:42:55 +00:00
|
|
|
rt_device_t lcd;
|
2011-06-08 00:50:04 +00:00
|
|
|
|
2010-12-23 03:13:14 +00:00
|
|
|
/* init lcd */
|
|
|
|
rt_hw_lcd_init();
|
|
|
|
|
2010-09-20 00:11:33 +00:00
|
|
|
/* init touch panel */
|
|
|
|
rtgui_touch_hw_init();
|
|
|
|
|
2011-01-12 14:54:05 +00:00
|
|
|
/* init keypad */
|
|
|
|
rt_hw_key_init();
|
|
|
|
|
2010-09-23 11:15:41 +00:00
|
|
|
/* re-init device driver */
|
2010-12-23 03:13:14 +00:00
|
|
|
rt_device_init_all();
|
|
|
|
|
2011-06-08 00:50:04 +00:00
|
|
|
/* find lcd device */
|
|
|
|
lcd = rt_device_find("lcd");
|
|
|
|
|
|
|
|
/* set lcd device as rtgui graphic driver */
|
|
|
|
rtgui_graphic_set_device(lcd);
|
|
|
|
|
2012-06-08 08:13:44 +00:00
|
|
|
/* initalize rtgui system server */
|
|
|
|
rtgui_system_server_init();
|
2010-05-14 16:52:21 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-12-18 05:25:41 +00:00
|
|
|
/* LwIP Initialization */
|
2009-12-11 09:42:01 +00:00
|
|
|
#ifdef RT_USING_LWIP
|
2009-12-18 05:25:41 +00:00
|
|
|
{
|
|
|
|
extern void lwip_sys_init(void);
|
|
|
|
eth_system_device_init();
|
2009-12-11 09:42:01 +00:00
|
|
|
|
2009-12-18 05:25:41 +00:00
|
|
|
/* register ethernetif device */
|
|
|
|
rt_hw_dm9000_init();
|
2009-12-11 09:42:01 +00:00
|
|
|
|
2009-12-18 05:25:41 +00:00
|
|
|
/* re-init device driver */
|
|
|
|
rt_device_init_all();
|
2009-12-11 09:42:01 +00:00
|
|
|
|
2009-12-18 05:25:41 +00:00
|
|
|
/* init lwip system */
|
|
|
|
lwip_sys_init();
|
|
|
|
rt_kprintf("TCP/IP initialized!\n");
|
|
|
|
}
|
2009-12-11 09:42:01 +00:00
|
|
|
#endif
|
2010-10-02 12:40:18 +00:00
|
|
|
|
|
|
|
#ifdef RT_USING_FTK
|
|
|
|
{
|
2010-12-23 03:13:14 +00:00
|
|
|
rt_thread_t ftk_thread;
|
|
|
|
|
2010-10-02 15:45:09 +00:00
|
|
|
/* init lcd */
|
2010-10-02 12:40:18 +00:00
|
|
|
rt_hw_lcd_init();
|
|
|
|
|
2010-10-02 15:45:09 +00:00
|
|
|
/* init touch panel */
|
|
|
|
rtgui_touch_hw_init();
|
|
|
|
|
2011-01-12 14:54:05 +00:00
|
|
|
/* init keypad */
|
|
|
|
rt_hw_key_init();
|
|
|
|
|
2010-10-02 15:45:09 +00:00
|
|
|
/* re-init device driver */
|
2010-10-04 08:28:55 +00:00
|
|
|
rt_device_init_all();
|
2010-12-23 03:13:14 +00:00
|
|
|
|
|
|
|
/* create ftk thread */
|
|
|
|
ftk_thread = rt_thread_create("ftk",
|
2011-05-23 01:33:31 +00:00
|
|
|
rt_ftk_thread_entry, RT_NULL,
|
2010-12-23 03:13:14 +00:00
|
|
|
10 * 1024, 8, 20);
|
|
|
|
|
|
|
|
/* startup ftk thread */
|
2012-06-08 08:13:44 +00:00
|
|
|
if (ftk_thread != RT_NULL)
|
2010-12-23 03:13:14 +00:00
|
|
|
rt_thread_startup(ftk_thread);
|
2010-10-02 12:40:18 +00:00
|
|
|
}
|
|
|
|
#endif
|
2009-12-18 05:25:41 +00:00
|
|
|
}
|
2009-12-11 09:42:01 +00:00
|
|
|
|
2012-06-08 08:13:44 +00:00
|
|
|
void rt_led_thread_entry(void *parameter)
|
2009-12-27 10:58:45 +00:00
|
|
|
{
|
2012-06-08 08:13:44 +00:00
|
|
|
while (1)
|
2009-12-27 10:58:45 +00:00
|
|
|
{
|
2009-12-28 15:41:21 +00:00
|
|
|
/* light on leds for one second */
|
2009-12-27 10:58:45 +00:00
|
|
|
rt_hw_led_on(LED2|LED3);
|
2009-12-28 15:41:21 +00:00
|
|
|
rt_hw_led_off(LED1|LED4);
|
2009-12-27 10:58:45 +00:00
|
|
|
rt_thread_delay(100);
|
|
|
|
|
2009-12-28 15:41:21 +00:00
|
|
|
/* light off leds for one second */
|
2009-12-27 10:58:45 +00:00
|
|
|
rt_hw_led_off(LED2|LED3);
|
2009-12-28 15:41:21 +00:00
|
|
|
rt_hw_led_on(LED1|LED4);
|
2009-12-27 10:58:45 +00:00
|
|
|
rt_thread_delay(100);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-08 08:13:44 +00:00
|
|
|
int rt_application_init(void)
|
2009-12-18 05:25:41 +00:00
|
|
|
{
|
|
|
|
rt_thread_t init_thread;
|
2009-12-27 10:58:45 +00:00
|
|
|
rt_thread_t led_thread;
|
2009-12-18 05:25:41 +00:00
|
|
|
|
|
|
|
#if (RT_THREAD_PRIORITY_MAX == 32)
|
|
|
|
init_thread = rt_thread_create("init",
|
|
|
|
rt_init_thread_entry, RT_NULL,
|
2010-10-02 12:40:18 +00:00
|
|
|
RT_INIT_THREAD_STACK_SIZE, 8, 20);
|
2009-12-27 10:58:45 +00:00
|
|
|
|
|
|
|
led_thread = rt_thread_create("led",
|
|
|
|
rt_led_thread_entry, RT_NULL,
|
|
|
|
512, 20, 20);
|
2009-12-18 05:25:41 +00:00
|
|
|
#else
|
|
|
|
init_thread = rt_thread_create("init",
|
|
|
|
rt_init_thread_entry, RT_NULL,
|
2010-10-02 12:40:18 +00:00
|
|
|
RT_INIT_THREAD_STACK_SIZE, 80, 20);
|
2009-12-27 10:58:45 +00:00
|
|
|
|
|
|
|
led_thread = rt_thread_create("led",
|
|
|
|
rt_led_thread_entry, RT_NULL,
|
|
|
|
512, 200, 20);
|
2009-12-18 05:25:41 +00:00
|
|
|
#endif
|
2009-12-11 09:42:01 +00:00
|
|
|
|
2009-12-18 05:25:41 +00:00
|
|
|
if (init_thread != RT_NULL)
|
|
|
|
rt_thread_startup(init_thread);
|
2009-12-11 09:42:01 +00:00
|
|
|
|
2012-06-08 08:13:44 +00:00
|
|
|
if (led_thread != RT_NULL)
|
2009-12-27 10:58:45 +00:00
|
|
|
rt_thread_startup(led_thread);
|
|
|
|
|
2009-12-18 05:25:41 +00:00
|
|
|
return 0;
|
2009-12-11 09:42:01 +00:00
|
|
|
}
|
2009-12-18 05:25:41 +00:00
|
|
|
|
|
|
|
/*@}*/
|