123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /****************************************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 <stdio.h>
- #include <string.h>
- #include <ctype.h>
- #include <stdlib.h>
- #include <stdarg.h>
- #include <math.h>
- #include "stdint.h"
- #define TRUE 0xffffffff
- #define FALSE 0x00000000
- #include <stm32f10x.h>
- 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 "Key.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 "W25Q64.h"
- #include "FileSys.h"
- #include "DownFiles.h"
- #include "CopyFile.h"
- #endif
- /*********************************************************************************************************
- END FILE
- *********************************************************************************************************/
|