1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /*
- * File : components_init.h
- * This file is part of RT-Thread RTOS
- * COPYRIGHT (C) 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
- * 2012-09-20 Bernard Change the name to components.h
- * And all components related header files.
- */
- #ifndef __COMPONENTS_INIT_H__
- #define __COMPONENTS_INIT_H__
- #include <rtthread.h>
- #ifdef RT_USING_FINSH
- #include <finsh.h>
- #include <shell.h>
- #endif
- #ifdef RT_USING_LWIP
- #include <lwip/sys.h>
- #include <netif/ethernetif.h>
- extern void lwip_system_init(void);
- #endif
- #ifdef RT_USING_DFS
- #include <dfs_init.h>
- #ifdef RT_USING_DFS_ELMFAT
- #include <dfs_elm.h>
- #endif
- #ifdef RT_USING_DFS_NFS
- #include <dfs_nfs.h>
- #endif
- #ifdef RT_USING_DFS_ROMFS
- #include <dfs_romfs.h>
- #endif
- #ifdef RT_USING_DFS_DEVFS
- #include <devfs.h>
- #endif
- #ifdef RT_USING_DFS_UFFS
- #include <dfs_uffs.h>
- #endif
- #ifdef RT_USING_DFS_JFFS2
- #include <dfs_jffs2.h>
- #endif
- #ifdef RT_USING_DFS_YAFFS2
- #include <dfs_yaffs2.h>
- #endif
- #ifdef RT_USING_DFS_ROMFS
- #include <dfs_romfs.h>
- #endif
- #endif
- #ifdef RT_USING_NEWLIB
- #include <libc.h>
- #endif
- #ifdef RT_USING_PTHREADS
- #include <pthread.h>
- #endif
- #ifdef RT_USING_MODULE
- #include <rtm.h>
- #endif
- #ifdef RT_USING_RTGUI
- #include <rtgui/rtgui_system.h>
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**
- * Initializes components in RT-Thread
- * notes: this function must be invoked in thread
- */
- void rt_components_init(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|