Quick and dirty CoOS + LWIP ( Webserver )

Dependencies:   mbed lwip

Committer:
astroboy
Date:
Sat Sep 10 22:41:10 2011 +0000
Revision:
0:94897d537b31

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
astroboy 0:94897d537b31 1 /**
astroboy 0:94897d537b31 2 *******************************************************************************
astroboy 0:94897d537b31 3 * @file OsTime.c
astroboy 0:94897d537b31 4 * @version V1.1.4
astroboy 0:94897d537b31 5 * @date 2011.04.20
astroboy 0:94897d537b31 6 * @brief Header file related to time management
astroboy 0:94897d537b31 7 * @details Thie file including some data declare related to time managment.
astroboy 0:94897d537b31 8 *******************************************************************************
astroboy 0:94897d537b31 9 * @copy
astroboy 0:94897d537b31 10 *
astroboy 0:94897d537b31 11 * INTERNAL FILE,DON'T PUBLIC.
astroboy 0:94897d537b31 12 *
astroboy 0:94897d537b31 13 * <h2><center>&copy; COPYRIGHT 2009 CooCox </center></h2>
astroboy 0:94897d537b31 14 *******************************************************************************
astroboy 0:94897d537b31 15 */
astroboy 0:94897d537b31 16
astroboy 0:94897d537b31 17 #ifndef _TIME_H
astroboy 0:94897d537b31 18 #define _TIME_H
astroboy 0:94897d537b31 19
astroboy 0:94897d537b31 20 /*---------------------------- Variable declare ------------------------------*/
astroboy 0:94897d537b31 21 extern P_OSTCB DlyList; /*!< A pointer to ther delay list. */
astroboy 0:94897d537b31 22
astroboy 0:94897d537b31 23 /*---------------------------- Function declare ------------------------------*/
astroboy 0:94897d537b31 24 extern void TimeDispose(void); /*!< Time dispose function. */
astroboy 0:94897d537b31 25 extern void isr_TimeDispose(void);
astroboy 0:94897d537b31 26 extern void RemoveDelayList(P_OSTCB ptcb);
astroboy 0:94897d537b31 27 extern void InsertDelayList(P_OSTCB ptcb,U32 ticks);
astroboy 0:94897d537b31 28 #endif