123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /****************************************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 "stm32f10x_rtc.h"
- #include "stm32f10x_bkp.h"
- #include "ProductPara.h"
- #include "Serial.h"
- #include "Modem.h"
- #include "Key.h"
- #include "id.h"
- #include "sleep.h"
- #include "Audio.h"
- #include "GPS.h"
- #include "GpsData.h"
- #include "TSGpsProcess.h"
- #include "LedTask.h"
- #include "userRtc.h"
- //SPI FLASH
- #include "W25Q64.h"
- #include "FileSys.h"
- #include "md5.h"
- //LCD and GUI
- #include "lcd.h"
- #include "GUI.h"
- #include "ICON.h"
- //Interface
- #include "Menu.h"
- #include "NumEdit.h"
- #include "ListBox.h"
- //
- #include "UI.h"
- ////---
- #include <rtl.h>
- #include "MainTask.h" //2
- #include "GpsTask.h" //1
- //#include "PocTask.h" //3
- #include "ZXPocTask.h"
- #include "ModemTask.h" //4
- #include "ttsTask.h"
- //#include "STimer.h"
- #include "Message.h"
- #include "SetSystemPara.h"
- #include "ListBoxSMS.h "
- #include "ManageMessage.h"
- #include "MC8332GpsTask.h"
- #include "crc.h"
- #include "AppIap.h"
- //#include "HgsTcpProc.h"
- #include "MsgQueue.h"
- #endif
- /*********************************************************************************************************
- END FILE
- *********************************************************************************************************/
|