/* * File : application.c * This file is part of RT-Thread RTOS * COPYRIGHT (C) 2009 - 2012, 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 * 2013-7-14 Peng Fan Modified from mini4020 */ #include #include #include #include #ifdef RT_USING_FINSH #include #endif #ifdef RT_USING_LWIP #include #include #endif #include rt_uint8_t _irq_stack_start[1024]; rt_uint8_t _fiq_stack_start[1024]; rt_uint8_t _undefined_stack_start[512]; rt_uint8_t _abort_stack_start[512]; rt_uint8_t _priv_stack_start[4096]; SECTION(".nobss"); extern unsigned char __bss_start; extern unsigned char __bss_end; extern void rt_hw_board_init(void); extern void rt_application_init(void); extern void finsh_system_init(void); extern void sd_init(void); void rtthread_startup() { /* init hardware interrupt */ rt_hw_interrupt_init(); /* init board */ rt_hw_board_init(); /* show version */ rt_show_version(); /* init tick */ rt_system_tick_init(); /* init kernel object */ rt_system_object_init(); /* init timer system */ rt_system_timer_init(); /* init heap memory system */ rt_system_heap_init(&__bss_end, (void*)0x45000000); /* init scheduler system */ rt_system_scheduler_init(); #ifdef RT_USING_DEVICE #ifdef RT_USING_DFS rt_hw_sdcard_init(); #endif #ifdef RT_USING_LWIP eth_system_device_init(); rt_hw_dm9000_init(); #endif /*init all registed devices */ rt_device_init_all(); #endif /* init application */ rt_application_init(); #ifdef RT_USING_FINSH /* init finsh */ finsh_system_init(); #ifdef RT_USING_DEVICE finsh_set_device("uart0"); #endif #endif rt_system_timer_thread_init(); /* init idle thread */ rt_thread_idle_init(); /* start scheduler */ rt_system_scheduler_start(); /* never reach here */ return ; } int main() { rt_uint32_t UNUSED level; /* disable interrupt first */ level = rt_hw_interrupt_disable(); /* startup RT-Thread RTOS */ rtthread_startup(); return 0; }