| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- /*
- *********************************************************************************************************
- * 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>
- /*
- *********************************************************************************************************
- * OS
- *********************************************************************************************************
- */
- //#include <os.h>
- //#include "os_cfg_app.h"
- /*
- *********************************************************************************************************
- * ST
- *********************************************************************************************************
- */
- //#include <stm32f10x_lib.h>
- #include "gd32f10x.h"
- /*
- *********************************************************************************************************
- * INCLUDES END
- *********************************************************************************************************
- */
- #include "ch455g.h"
- #include "iic2.h"
- #include "Uart.h"
- #include "delay.h"
- #include "systick.h"
- #include "bsp.h"
- #include "led.h"
- #include "AT24C128.h"
- #include "hamming.h"
- #include "update.h"
- #include "Flash.h"
- #define BYTE1 __attribute__((packed, aligned(1))) //aligned(1)£º1×Ö½Ú¶ÔÆë
- #endif
|