12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /****************************************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 "stm32f10x_pwr.h"
- #include "stm32f10x_iwdg.h"
- #include "stm32f10x_dma.h"
- #include "Serial.h"
- #include "Modem.h"
- #include "Key.h"
- #include "id.h"
- #include "MsgQueue.h"
- #include "ProductPara.h"
- #include "Audio.h"
- #include "GPS.h"
- #include "GpsData.h"
- //#include "GpsProcess.h"
- #include "LedTask.h"
- #include "HgsTcpProc.h"
- #include "TSGpsProcess.h"
- #include "Message.h"
- //---
- #include <rtl.h>
- #include "MainTask.h" //2
- #include "GpsTask.h" //1
- #include "PocTask.h" //3
- #include "ModemTask.h" //4
- #include "ttsTask.h"
- #include "sleep.h"
- //---
- #include "unicode.h"
- #endif
- /*********************************************************************************************************
- END FILE
- *********************************************************************************************************/
|