![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
Quick and dirty CoOS + LWIP ( Webserver )
CoOS/kernel/coocox.h@0:94897d537b31, 2011-09-10 (annotated)
- Committer:
- astroboy
- Date:
- Sat Sep 10 22:41:10 2011 +0000
- Revision:
- 0:94897d537b31
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
astroboy | 0:94897d537b31 | 1 | /** |
astroboy | 0:94897d537b31 | 2 | ******************************************************************************* |
astroboy | 0:94897d537b31 | 3 | * @file coocox.h |
astroboy | 0:94897d537b31 | 4 | * @version V1.1.4 |
astroboy | 0:94897d537b31 | 5 | * @date 2011.04.20 |
astroboy | 0:94897d537b31 | 6 | * @brief Gather for all header file of CooCox CoOS. |
astroboy | 0:94897d537b31 | 7 | ******************************************************************************* |
astroboy | 0:94897d537b31 | 8 | * @copy |
astroboy | 0:94897d537b31 | 9 | * |
astroboy | 0:94897d537b31 | 10 | * INTERNAL FILE,DON'T PUBLIC. |
astroboy | 0:94897d537b31 | 11 | * |
astroboy | 0:94897d537b31 | 12 | * <h2><center>© COPYRIGHT 2009 CooCox </center></h2> |
astroboy | 0:94897d537b31 | 13 | ******************************************************************************* |
astroboy | 0:94897d537b31 | 14 | */ |
astroboy | 0:94897d537b31 | 15 | |
astroboy | 0:94897d537b31 | 16 | |
astroboy | 0:94897d537b31 | 17 | #ifndef _COOCOX_H |
astroboy | 0:94897d537b31 | 18 | #define _COOCOX_H |
astroboy | 0:94897d537b31 | 19 | |
astroboy | 0:94897d537b31 | 20 | #define OS_VERSION (U16)0x0114 /*!< OS version.(format: Vx.xx), |
astroboy | 0:94897d537b31 | 21 | e.g. value 0x0114 is version V1.14*/ |
astroboy | 0:94897d537b31 | 22 | /*---------------------------- Include ---------------------------------------*/ |
astroboy | 0:94897d537b31 | 23 | #include "CoOS.h" |
astroboy | 0:94897d537b31 | 24 | #include "OsArch.h" |
astroboy | 0:94897d537b31 | 25 | #include "OsCore.h" |
astroboy | 0:94897d537b31 | 26 | #include "OsTask.h" |
astroboy | 0:94897d537b31 | 27 | #include "OsServiceReq.h" |
astroboy | 0:94897d537b31 | 28 | #include "OsError.h" |
astroboy | 0:94897d537b31 | 29 | #include "OsTime.h" |
astroboy | 0:94897d537b31 | 30 | |
astroboy | 0:94897d537b31 | 31 | |
astroboy | 0:94897d537b31 | 32 | #if CFG_TMR_EN > 0 |
astroboy | 0:94897d537b31 | 33 | #include "OsTimer.h" |
astroboy | 0:94897d537b31 | 34 | #endif |
astroboy | 0:94897d537b31 | 35 | |
astroboy | 0:94897d537b31 | 36 | #if CFG_KHEAP_EN > 0 |
astroboy | 0:94897d537b31 | 37 | #include "OsKernelHeap.h" |
astroboy | 0:94897d537b31 | 38 | #endif |
astroboy | 0:94897d537b31 | 39 | |
astroboy | 0:94897d537b31 | 40 | #if CFG_MM_EN >0 |
astroboy | 0:94897d537b31 | 41 | #include "OsMM.h" |
astroboy | 0:94897d537b31 | 42 | #endif |
astroboy | 0:94897d537b31 | 43 | |
astroboy | 0:94897d537b31 | 44 | #if CFG_EVENT_EN > 0 |
astroboy | 0:94897d537b31 | 45 | #include "OsEvent.h" |
astroboy | 0:94897d537b31 | 46 | #endif |
astroboy | 0:94897d537b31 | 47 | |
astroboy | 0:94897d537b31 | 48 | #if CFG_MUTEX_EN > 0 |
astroboy | 0:94897d537b31 | 49 | #include "OsMutex.h" |
astroboy | 0:94897d537b31 | 50 | #endif |
astroboy | 0:94897d537b31 | 51 | |
astroboy | 0:94897d537b31 | 52 | #if CFG_QUEUE_EN > 0 |
astroboy | 0:94897d537b31 | 53 | #include "OsQueue.h" |
astroboy | 0:94897d537b31 | 54 | #endif |
astroboy | 0:94897d537b31 | 55 | |
astroboy | 0:94897d537b31 | 56 | #if CFG_FLAG_EN > 0 |
astroboy | 0:94897d537b31 | 57 | #include "OsFlag.h" |
astroboy | 0:94897d537b31 | 58 | #endif |
astroboy | 0:94897d537b31 | 59 | |
astroboy | 0:94897d537b31 | 60 | #endif /* _COOCOX_H */ |