1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*
- *********************************************************************************************************
- * EXAMPLE CODE
- *
- * (c) Copyright 2003-2013; 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.
- *********************************************************************************************************
- */
- #ifndef __INCLUDES_H__
- #define __INCLUDES_H__
- /*
- *********************************************************************************************************
- * STANDARD LIBRARIES
- *********************************************************************************************************
- */
- #include <stdarg.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <math.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 <bsp.h>
- /*
- *********************************************************************************************************
- * OS
- *********************************************************************************************************
- */
- #include <ucos_ii.h>
- #define TRUE 1
- #define FALSE 0
- #endif
|