| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /*
- *********************************************************************************************************
- * EXAMPLE CODE
- *
- * (c) Copyright 2009; Micrium, Inc.; Weston, FL
- *
- * All rights reserved. Protected by international copyright laws.
- * Knowledge of the source code may NOT be used to develop a similar product.
- * Please help us continue to provide the Embedded community with the finest
- * software available. Your honesty is greatly appreciated.
- *********************************************************************************************************
- */
- /*
- *********************************************************************************************************
- *
- * MASTER INCLUDES
- *
- * ST Microelectronics STM32
- * with the
- * STM3210E-EVAL Evaluation Board
- *
- * Filename : includes.h
- * Version : V1.00
- * Programmer(s) : EHS
- *********************************************************************************************************
- */
- #ifndef INCLUDES_PRESENT
- #define INCLUDES_PRESENT
- /*
- *********************************************************************************************************
- * STANDARD LIBRARIES
- *********************************************************************************************************
- */
- #include <stdarg.h>
- #include <stdio.h>
- #include <stdint.h>
- #include <string.h>
- #include <stdlib.h>
- #include <math.h>
- #include <ctype.h>
- /*
- *********************************************************************************************************
- * LIBRARIES
- *********************************************************************************************************
- */
- #include <cpu.h>
- #include <lib_def.h>
- #include <lib_ascii.h>
- #include <lib_math.h>
- #include <lib_mem.h>
- #include <lib_str.h>
- /*
- *********************************************************************************************************
- * APP / BSP
- *********************************************************************************************************
- */
- #include <app_cfg.h>
- #include <bsp.h>
- /*
- *********************************************************************************************************
- * OS
- *********************************************************************************************************
- */
- #include <os.h>
- #include "os_cfg_app.h"
- /*
- *********************************************************************************************************
- * ST
- *********************************************************************************************************
- */
- //#include <stm32f10x_lib.h>
- #include "stm32f10x.h"
- /*
- *********************************************************************************************************
- * INCLUDES END
- *********************************************************************************************************
- */
- #include "des.h"
- #include "tools.h"
- #include "adc.h"
- #include "app.h"
- #include "bsp.h"
- #include "Uart.h"
- #include "Flash.h"
- #include "sys.h"
- #include "time.h"
- //#include "macro_common.h"
- #include "delay.h"
- #include "rtc.h"
- #include "key.h"
- #include "led.h"
- #include "systick.h"
- #include "AT24C128.h"
- #include "w25qxx.h"
- #include "hamming.h"
- #include "pos.h"
- #include "memory.h"
- #include "uart_pt.h"
- #include "gw_ctrl.h"
- #include "ota.h"
- #include "encoder.h"
- #include "display_ctrl.h"
- #include "ota_display.h"
- #include "proc.h"
- #include "ota_xsp.h"
- #define BYTE1 __attribute__((packed, aligned(1))) //aligned(1)£º1×Ö½Ú¶ÔÆë
- #endif
|