lpc_api.h

来自「给大家提供一个在inram/exram中调试的示例,在周公的lpc2200上调试」· C头文件 代码 · 共 70 行

H
70
字号
/***********************************************************************
 *         BU MMS China, Philips Semiconductor Software Support
 *         Embest info&Tech Co. Software Support
 *---------------------------------------------------------------------------
 * The software is delivered "AS IS" without warranty or condition of any
 * kind, either express, implied or statutory.  Everybody can use it as 
 * it is opened and without copyright. We will not take any law responsibility
 * for any problem produced by using this software.
 *---------------------------------------------------------------------------
 *    File name: 	LPC_Api.h
 *    Description: 	Define API includes
 *
 *    1. Date:		Mar 13, 2005
 *       Author: 	Embest w.h.xie
 *       Description: Create
 *
 *	$Revision: 1.0 $
 **********************************************************************/

#ifndef __LPC_API_H
#define __LPC_API_H

#include	"API_CFG.H"
#include	"LPC_Base.h"
#include	"LPC_Type.h"
#include	"LPC_SysControl.h"

#if	API_ADC==1
	#include	"LPC_Adc.h"
#endif		// API_ADC

#if	API_CAN==1
	#include	"LPC_CAN.h"
#endif		// API_CAN

#if	API_I2C==1
	#include	"LPC_I2C.h"
#endif		// API_I2C

#if	API_IAP==1
	#include	"LPC_IAP.h"
#endif		// API_IAP

#if	API_RTC==1
	#include	"LPC_Rtc.h"
#endif		// API_RTC

#if	API_SPI==1
	#include	"LPC_SPI.h"
#endif		// API_SPI

#if	API_TIMER==1
	#include	"LPC_Timer.h"
#endif		// API_TIMER

#if	API_UART==1
	#include	"LPC_Uart.h"
#endif		// API_UART

#if	API_WDG==1
	#include	"LPC_Wdg.h"
#endif		// API_WDG

#if	API_VIC==1
	#include	"LPC_Vic.h"
#endif		// API_VIC


#endif   //__LPC_API_C

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?