12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /*
- * File : rtcomponents.h
- * header for RT-Thread components
- * This file is part of RT-Thread RTOS
- * COPYRIGHT (C) 2012-2015, RT-Thread Development Team
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Change Logs:
- * Date Author Notes
- * 2012-09-20 Bernard Change the name to components.h
- * And all components related header files.
- * 2015-02-06 Bernard Rename the components.h to rtcom.h
- */
- #ifndef RTCOM_H__
- #define RTCOM_H__
- #ifdef RT_USING_FINSH
- #include <finsh.h>
- #include <shell.h>
- #endif
- #ifdef RT_USING_LWIP
- #include <lwip/sys.h>
- #include <netif/ethernetif.h>
- #endif
- #ifdef RT_USING_DFS
- #include <dfs_init.h>
- #include <dfs_fs.h>
- #ifdef RT_USING_DFS_ELMFAT
- #include <dfs_elm.h>
- #endif
- #if defined(RT_USING_LWIP) && defined(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_PTHREADS
- #include <pthread.h>
- #endif
- #ifdef RT_USING_MODULE
- #include <rtm.h>
- #endif
- #endif
|