LPC214x_SampleSoftware

所属分类:处理器开发
开发工具:C/C++
文件大小:266KB
下载次数:43
上传日期:2008-03-01 14:58:36
上 传 者官工
说明:   LPC214X例程全包括,代码大全,非常难得!!!!
(LPC214X routines include the entire code Guinness, very rare! ! ! !)

文件列表:
LPC214x_SampleSoftware\Common\inc\irq.h (2474, 2006-02-08)
LPC214x_SampleSoftware\Common\inc\LPC214x.h (23369, 2006-01-04)
LPC214x_SampleSoftware\Common\inc\mem_b.scf (832, 2006-01-04)
LPC214x_SampleSoftware\Common\inc\mem_c.scf (824, 2006-01-04)
LPC214x_SampleSoftware\Common\inc\target.h (1310, 2006-02-08)
LPC214x_SampleSoftware\Common\inc\timer.h (904, 2006-01-04)
LPC214x_SampleSoftware\Common\inc\type.h (753, 2005-11-22)
LPC214x_SampleSoftware\Common\src\heap.s (733, 2006-01-04)
LPC214x_SampleSoftware\Common\src\irq.c (5368, 2006-02-08)
LPC214x_SampleSoftware\Common\src\stack.s (722, 2006-01-04)
LPC214x_SampleSoftware\Common\src\Startup.s (6542, 2006-01-04)
LPC214x_SampleSoftware\Common\src\swi_handler.s (3257, 2006-01-04)
LPC214x_SampleSoftware\Common\src\target.c (3663, 2006-02-08)
LPC214x_SampleSoftware\Common\src\timer.c (3342, 2006-01-04)
LPC214x_SampleSoftware\EXTINT\einttest.c (1257, 2006-02-08)
LPC214x_SampleSoftware\EXTINT\extint.c (2558, 2006-01-11)
LPC214x_SampleSoftware\EXTINT\extint.h (1117, 2006-01-04)
LPC214x_SampleSoftware\EXTINT\extint.prj (2870, 2006-01-11)
LPC214x_SampleSoftware\GPIO\fio.c (1469, 2006-01-11)
LPC214x_SampleSoftware\GPIO\fio.h (815, 2006-01-04)
LPC214x_SampleSoftware\GPIO\fiotest.c (1608, 2006-02-08)
LPC214x_SampleSoftware\GPIO\gpio.prj (2860, 2006-01-11)
LPC214x_SampleSoftware\I2C\i2c.c (7986, 2006-02-08)
LPC214x_SampleSoftware\I2C\i2c.h (1997, 2006-01-04)
LPC214x_SampleSoftware\I2C\i2cmst.c (2997, 2006-02-08)
LPC214x_SampleSoftware\I2C\i2cmst.prj (2971, 2005-12-09)
LPC214x_SampleSoftware\pwm\pwm.c (4308, 2006-02-09)
LPC214x_SampleSoftware\pwm\pwm.h (2183, 2006-02-09)
LPC214x_SampleSoftware\pwm\pwm.prj (2857, 2006-02-09)
LPC214x_SampleSoftware\pwm\pwm.prj.bak (2859, 2006-02-09)
LPC214x_SampleSoftware\pwm\pwmtest.c (1478, 2006-02-09)
LPC214x_SampleSoftware\pwm\pwm_Debug.mk (5003, 2006-02-09)
LPC214x_SampleSoftware\pwm\pwm_DebugRel.mk (5086, 2006-02-09)
LPC214x_SampleSoftware\pwm\pwm_Release.mk (5104, 2006-02-09)
LPC214x_SampleSoftware\RTC\rtc.c (5314, 2006-01-26)
LPC214x_SampleSoftware\RTC\rtc.h (2464, 2006-02-08)
LPC214x_SampleSoftware\RTC\rtc.prj (2857, 2006-01-11)
LPC214x_SampleSoftware\RTC\rtctest.c (2436, 2006-02-08)
LPC214x_SampleSoftware\SPI\spi.c (5340, 2006-02-08)
... ...

/***************************************************************************** * readme.txt: Description of the LPC213x/4x Sample Software * * Copyright(C) 2006, Philips Semiconductor * All rights reserved. * * History * 2006.02.01 ver 1.00 Preliminary version, first Release * ******************************************************************************/ /*****************************************************************************/ Software that is described herein is for illustrative purposes only which provides customers with programming information regarding the products. This software is supplied "AS IS" without any warranties. Philips Semiconductors assumes no responsibility or liability for the use of the software, conveys no license or title under any patent, copyright, or mask work right to the product. Philips Semiconductors reserves the right to make changes in the software without notification. Philips Semiconductors also make no representation or warranty that such application will be suitable for the specified use without further testing or modification. /*****************************************************************************/ The Description of the sample software =================== This example demonstrates the use of build-in peripherals on the Philips LPC213x/214x family MCUs. The sample software includes, common library, peripheral APIs, and test modules for the APIs. The common library include startup file, standard definition and header files, processor specific setup module, generic interrupt related APIs, timer routine, and scatter loading file. The peripheral directories include, GPIO, PWM, Real-time clock, timer, SPI, I2C, Watchdog timer, UART, external interrupt, etc. The development environment is ARM's RealView Development Kits for Philips (RVDK) with RVI-ME ICE. The target board is Keil's, now an ARM Company, MCB214x with a Philips's LPC214x MCU on it. Some external components, such as I2C temperature, SPI serial EEPROM, will be required to add on the board in order to complete the test below. The directory tree and content of the sample software =================== common -- inc -- lpc214x.h Definition file of all the registers of LPC213x/4x -- irq.h Interrupt related definitions and API prototyping -- type.h Type definition -- target.h Target specific definition for Keil's MCB214x board -- timer.h Definition and header file for timer module -- mem_b.scf Scatter loader for code running in SRAM -- mem_c.scf Scatter loader for code running in flash -- src -- startup.s Code start up entry -- heap.s Heap entry definition -- stack.s Stack entry definition -- swi_handler.s SWI handler -- irq.c Generic interrupt handler related APIs -- target.c Target specific modules -- timer.c Timer related APIs GPIO -- fio.h GPIO and fast I/O header -- fio.c GPIO and fast I/O APIs -- fiotest.c GPIO and Fast I/O test module -- gpio.prj RVDK project file EXTINT -- extint.h External interrupt header -- extint.c External interrupt APIs -- einttest.c External interrupt test module -- extint.prj RVDK project file Timer -- tmrtest.c Timer test module, note: API modules are in the COMMON directory and shared and used by some peripheral testing. -- timer.prj RVDK project file PWM -- pwmc.h PWM header -- pwm.c PWM APIs -- pwmtest.c PWM test module -- pwm.prj RVDK project file SPI -- spi.h SPI header -- spi.c SPI APIs -- spitest.c SPI test module -- spi.prj RVDK project file UART -- uart.h UART header -- uart.c UART APIs -- uarttest.c UART test module -- uart.prj RVDK project file RTC -- rtc.h Real-time clock(RTC) header -- rtc.c Real-time clock(RTC) APIs -- rtctest.c Real-time clock(RTC) test module -- rtc.prj RVDK project file I2C -- i2c.h I2C header -- i2c.c I2C APIs -- i2ctest.c I2C test module -- i2c.prj RVDK project file WDT -- wdt.h Watchdog timer header -- wdt.c Watchdog timer APIs -- wdttest.c Watchdog timer test module -- wdt.prj RVDK project file

近期下载者

相关文件


收藏者