96 lines
3.4 KiB
C
96 lines
3.4 KiB
C
|
/*
|
||
|
*********************************************************************************************************
|
||
|
* EXAMPLE CODE
|
||
|
*
|
||
|
* (c) Copyright 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.
|
||
|
*********************************************************************************************************
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
*********************************************************************************************************
|
||
|
*
|
||
|
* MASTER INCLUDES
|
||
|
*
|
||
|
* Freescale Kinetis K60
|
||
|
* on the
|
||
|
*
|
||
|
* Freescale TWR-K60N512
|
||
|
* Evaluation Board
|
||
|
*
|
||
|
* Filename : includes.h
|
||
|
* Version : V1.00
|
||
|
* Programmer(s) : FT
|
||
|
* DC
|
||
|
*********************************************************************************************************
|
||
|
*/
|
||
|
|
||
|
#ifndef INCLUDES_MODULES_PRESENT
|
||
|
#define INCLUDES_MODULES_PRESENT
|
||
|
|
||
|
|
||
|
/*
|
||
|
*********************************************************************************************************
|
||
|
* STANDARD LIBRARIES
|
||
|
*********************************************************************************************************
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <ctype.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdarg.h>
|
||
|
#include <math.h>
|
||
|
|
||
|
/*
|
||
|
*********************************************************************************************************
|
||
|
* OS
|
||
|
*********************************************************************************************************
|
||
|
*/
|
||
|
|
||
|
#include <ucos_ii.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>
|
||
|
/*
|
||
|
*********************************************************************************************************
|
||
|
* SERIAL
|
||
|
*********************************************************************************************************
|
||
|
*/
|
||
|
|
||
|
#if (APP_CFG_SERIAL_EN == DEF_ENABLED)
|
||
|
#include <bsp_ser.h>
|
||
|
#endif
|
||
|
|
||
|
|
||
|
/*
|
||
|
*********************************************************************************************************
|
||
|
* INCLUDES END
|
||
|
*********************************************************************************************************
|
||
|
*/
|
||
|
#include <bsp_os.h>
|
||
|
|
||
|
#endif
|