1234567891011121314151617181920212223242526272829303132333435363738 |
- /********************************************************************************
- * File Name: NetTask.h
- * Function Describe: Header file for NetTask.c
- * Explain:
- * Writer: ShiLiangWen
- * Date: 2015-4-12
- *******************************************************************************/
- #ifndef __NET_TASK_H
- #define __NET_TASK_H
- /************************************file begin*******************************/
- #include <rtl.h>
- #include "MsgQueue.h"
- extern OS_TID idNetTask;
- extern int g_iCSQ;
- extern int g_iModemVer;
- typedef struct SUTDL
- {
- union {
- struct { unsigned char b1,b2,b3,b4; }ucData;
- unsigned long ulData;
- }Data;
- }SUTDL;
- typedef struct SUTDS
- {
- union {
- struct { unsigned char b1,b2; }ucData;
- unsigned short usData;
- }Data;
- }SUTDS;
- __task void NetTask(void);
- /************************************file end ******************************************/
- #endif
|