/****************************************Copyright (c)**************************************************** ** ** http://www.powermcu.com ** **--------------File Info--------------------------------------------------------------------------------- ** File name: includes.h ** Descriptions: includes.h for ucos ** **-------------------------------------------------------------------------------------------------------- ** Created by: AVRman ** Created date: 2010-11-9 ** Version: v1.0 ** Descriptions: The original version ** **-------------------------------------------------------------------------------------------------------- ** Modified by: ** Modified date: ** Version: ** Descriptions: ** *********************************************************************************************************/ #ifndef __INCLUDES_H__ #define __INCLUDES_H__ /* Includes ------------------------------------------------------------------*/ #include #include #include #include #include #include #include "stdint.h" #define TRUE 0xffffffff #define FALSE 0x00000000 #include typedef unsigned char u8_t; /* Unsigned 8 bit quantity */ typedef signed char s8_t; /* Signed 8 bit quantity */ typedef unsigned short u16_t; /* Unsigned 16 bit quantity */ typedef signed short s16_t; /* Signed 16 bit quantity */ typedef unsigned long u32_t; /* Unsigned 32 bit quantity */ typedef signed long s32_t; /* Signed 32 bit quantity */ typedef unsigned char INT8U; /* Unsigned 8 bit quantity */ typedef unsigned char INT16U; /* Unsigned 8 bit quantity */ #include "stm32f10x_flash.h" #include "Serial.h" #include "Msg.h" #include "delay.h" #include "id.h" #include "IAP.h" #include "md5.h" #include "crc.h" #include "flash.h" #include "MsgQueue.h" #include "WatchDog.h" #include "W25Q64.h" #include "CopyApp2Mcu.h" //#include "ModemMsg.h " extern unsigned char ExFlashWatchDog; #endif /********************************************************************************************************* END FILE *********************************************************************************************************/