?? includes.h
字號:
/****************************************Copyright (c)**************************************************
** Guangzhou ZHIYUAN electronics Co.,LTD.
**
** http://www.embedtools.com
**
**--------------File Info-------------------------------------------------------------------------------
** File Name: Target.c
** Last modified Date: 2007-01-18
** Last Version: 1.0
** Description: uCOS-II's include file uCOS-II的頭文件
**
**------------------------------------------------------------------------------------------------------
** Created By: Steven Zhou 周紹剛
** Created date: 2007-01-18
** Version: 1.0
** Descriptions: The original version 初始版本
**
**------------------------------------------------------------------------------------------------------
** Modified by:
** Modified date:
** Version:
** Description:
**
********************************************************************************************************/
#ifndef __INCLUDES_H__
#define __INCLUDES_H__
/********************************************************************************************************
* Date types(Compiler specific) 數據類型(和編譯器相關) *
********************************************************************************************************/
typedef unsigned char uint8; // Unsigned 8 bit quantity 無符號8位整型變量
typedef signed char int8; // Signed 8 bit quantity 有符號8位整型變量
typedef unsigned short uint16; // Unsigned 16 bit quantity 無符號16位整型變量
typedef signed short int16; // Signed 16 bit quantity 有符號16位整型變量
typedef unsigned int uint32; // Unsigned 32 bit quantity 無符號32位整型變量
typedef signed int int32; // Signed 32 bit quantity 有符號32位整型變量
typedef float fp32; // Single precision floating point 單精度浮點數(32位長度)
typedef double fp64; // Double precision floating point 雙精度浮點數(64位長度)
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifndef NULL
#define NULL 0
#endif
/********************************************************************************************************
* Header files 頭文件 *
********************************************************************************************************/
/************************************************
Standard header files 標準頭文件
************************************************/
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
/************************************************
Driver's header files 驅動庫頭文件
************************************************/
#include <hw_types.h>
#include <hw_memmap.h>
#include <hw_ints.h>
#include <hw_gpio.h>
#include <hw_pwm.h>
#include <sysctl.h>
#include <systick.h>
#include <debug.h>
#include <gpio.h>
#include <interrupt.h>
#include <uart.h>
#include <pwm.h>
#include <qei.h>
#include <timer.h>
/************************************************
Port's header files 移植頭文件
************************************************/
#include <ucos_ii.h>
#include <Target.h>
/************************************************
User's header files 用戶頭文件
************************************************/
#include <Main.h>
#endif
/*********************************************************************************************************
* End Of File *
*********************************************************************************************************/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -