astroboy astroboy
/
CoOS_LWIP
Quick and dirty CoOS + LWIP ( Webserver )
CoOS/kernel/utility.h
- Committer:
- astroboy
- Date:
- 2011-09-10
- Revision:
- 0:94897d537b31
File content as of revision 0:94897d537b31:
/** ******************************************************************************* * @file utility.h * @version V1.1.4 * @date 2011.04.20 * @brief Utility function header file * @details This file including some defines and declares related to utility * function. ******************************************************************************* * @copy * * INTERNAL FILE,DON'T PUBLIC. * * <h2><center>© COPYRIGHT 2009 CooCox </center></h2> ******************************************************************************* */ #ifndef _UTILITY_H #define _UTILITY_H /** * @struct Time struct utility.h * @brief Time struct * @details This struct use to manage time */ typedef struct SysTime { U8 sec; /*!< Second */ U8 min; /*!< Minute */ U8 hour; /*!< Hour */ U8 date; /*!< Date */ U8 month; /*!< Month */ U16 year; /*!< Year */ }TIME; #endif