在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → lpc2100系列arm7示例程序大全.rar

lpc2100系列arm7示例程序大全.rar

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:1.47M
  • 下载次数:1
  • 浏览次数:64
  • 发布时间:2021-12-08
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
里面有各种接口程序和片内外设程序 int main(void) { uint32 ADC_Data; char str[20]; PINSEL0 = 0x00000005; // 设置P0.0、P0.1连接到UART0的TXD、RXD PINSEL1 = 0x01400000; // 设置P0.27、P0.28连接到AIN0、AIN1 UART0_Init(); // 初始化UART0 /* 进行ADC模块设置,其中x<<n表示第n位设置为x(若x超过一位,则向高位顺延) */ ADCR = (1 << 0) | // SEL = 1 ,选择通道0 ((Fpclk / 1000000 - 1) << 8) | // CLKDIV = Fpclk / 1000000 - 1 ,即转换时钟为1MHz (0 << 16) | // BURST = 0 ,软件控制转换操作 (0 << 17) | // CLKS = 0 ,使用11clock转换(即10转换方式) (1 << 21) | // PDN = 1 , 正常工作模式(非掉电转换模式) (0 << 22) | // TEST1:0 = 00 ,正常工作模式(非测试模式) (1 << 24) | // START = 1 ,直接启动ADC转换 (0 << 27); // EDGE = 0 (CAP/MAT引脚下降沿触发ADC转换) DelayNS(10); ADC_Data = ADDR; // 读取ADC结果,并清除DONE标志位 while(1) { ADCR = (ADCR&0xFFFFFF00)|0x01|(1 << 24); // 切换通道并进行第一次转换 while( (ADDR&0x80000000)==0 ); // 等待转换结束 ADCR = ADCR | (1 <>6) & 0x3FF; ADC_Data = ADC_Data * 3300; ADC_Data = ADC_Data / 1024; sprintf(str, "%4dmV at VIN1", ADC_Data); ISendStr(60, 23, 0x30, str); ADCR = (ADCR&0xFFFFFF00)|0x02|(1 << 24); // 切换通道并进行第一次转换 while( (ADDR&0x80000000)==0 ); // 等待转换结束 ADCR = ADCR | (1 <>6) & 0x3FF; ADC_Data = ADC_Data * 3300; ADC_Data = ADC_Data / 1024; sprintf(str, "%4dmV at VIN2", ADC_Data); ISendStr(60, 21, 0x30, str); DelayNS(10); } return(0); }
【实例截图】
【核心代码】
4744302542886557214.rar
└── examples
├── Adc
│   ├── asm
│   │   └── Adc0
│   │   ├── Adc0_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── Adc0.axf
│   │   │   │   └── ObjectCode
│   │   │   │   ├── Adc0.o
│   │   │   │   └── Startup.o
│   │   │   └── RelInFLASH
│   │   ├── Adc0.mcp
│   │   ├── ADC0.S
│   │   └── src
│   │   ├── LPC2294.inc
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   └── Startup.s
│   └── C
│   └── Adc01
│   ├── adc01.c
│   ├── Adc01_Data
│   │   ├── CWSettingsWindows.stg
│   │   ├── DebugInFLASH
│   │   ├── DebugInRAM
│   │   │   ├── Adc01.axf
│   │   │   └── ObjectCode
│   │   │   ├── adc01.o
│   │   │   ├── heap.o
│   │   │   ├── stack.o
│   │   │   ├── Startup.o
│   │   │   └── target.o
│   │   └── RelInFLASH
│   ├── Adc01.mcp
│   └── src
│   ├── config.h
│   ├── heap.s
│   ├── IRQ.s
│   ├── LPC2294.h
│   ├── mem_a.scf
│   ├── mem_b.scf
│   ├── mem_c.scf
│   ├── stack.s
│   ├── Startup.s
│   ├── target.c
│   └── target.h
├── ARMulate
│   ├── Test1
│   │   ├── test1_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── Debug
│   │   │   │   └── TargetDataWindows.tdt
│   │   │   ├── DebugRel
│   │   │   │   ├── ObjectCode
│   │   │   │   │   └── test1.o
│   │   │   │   ├── TargetDataWindows.tdt
│   │   │   │   └── test1.axf
│   │   │   └── Release
│   │   │   └── TargetDataWindows.tdt
│   │   ├── test1.mcp
│   │   └── test1.s
│   ├── TEST2
│   │   ├── TEST2_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── Debug
│   │   │   ├── DebugRel
│   │   │   │   ├── ObjectCode
│   │   │   │   │   └── Test2.o
│   │   │   │   └── TEST2.axf
│   │   │   └── Release
│   │   ├── TEST2.mcp
│   │   └── TEST2.S
│   ├── TEST3
│   │   ├── TEST3_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── Debug
│   │   │   ├── DebugRel
│   │   │   │   ├── ObjectCode
│   │   │   │   │   └── Test3.o
│   │   │   │   └── TEST3.axf
│   │   │   └── Release
│   │   ├── TEST3.mcp
│   │   └── TEST3.S
│   ├── Test4
│   │   ├── Test4_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── Debug
│   │   │   ├── DebugRel
│   │   │   │   ├── ObjectCode
│   │   │   │   │   └── Test4.o
│   │   │   │   └── Test4.axf
│   │   │   └── Release
│   │   ├── Test4.mcp
│   │   └── TEST4.S
│   ├── TEST5
│   │   ├── TEST5_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── Debug
│   │   │   ├── DebugRel
│   │   │   │   ├── ObjectCode
│   │   │   │   │   └── Test5.o
│   │   │   │   └── TEST5.axf
│   │   │   └── Release
│   │   ├── TEST5.mcp
│   │   └── TEST5.S
│   ├── Test6
│   │   ├── Test6_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── Debug
│   │   │   ├── DebugRel
│   │   │   │   ├── ObjectCode
│   │   │   │   │   └── Test6.o
│   │   │   │   └── Test6.axf
│   │   │   └── Release
│   │   ├── Test6.mcp
│   │   └── Test6.s
│   ├── Test7
│   │   ├── Test7_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── Debug
│   │   │   ├── DebugRel
│   │   │   │   ├── ObjectCode
│   │   │   │   │   └── Test7.o
│   │   │   │   └── Test7.axf
│   │   │   └── Release
│   │   ├── Test7.mcp
│   │   └── TEST7.S
│   └── TEST8
│   ├── TEST8_Data
│   │   ├── CWSettingsWindows.stg
│   │   ├── Debug
│   │   ├── DebugRel
│   │   │   ├── ObjectCode
│   │   │   │   └── Test8.o
│   │   │   └── TEST8.axf
│   │   └── Release
│   ├── TEST8.mcp
│   └── TEST8.S
├── division
│   └── div.s
├── Gpio
│   ├── asm
│   │   ├── KeyIn
│   │   │   ├── KeyIn_Data
│   │   │   │   ├── CWSettingsWindows.stg
│   │   │   │   ├── DebugInFLASH
│   │   │   │   ├── DebugInRAM
│   │   │   │   │   ├── KeyIn.axf
│   │   │   │   │   └── ObjectCode
│   │   │   │   │   ├── Keyin.o
│   │   │   │   │   └── Startup.o
│   │   │   │   └── RelInFLASH
│   │   │   ├── KeyIn.mcp
│   │   │   ├── KEYIN.S
│   │   │   └── src
│   │   │   ├── LPC2294.inc
│   │   │   ├── mem_a.scf
│   │   │   ├── mem_b.scf
│   │   │   ├── mem_c.scf
│   │   │   └── Startup.s
│   │   ├── LedCon
│   │   │   ├── LedCon_Data
│   │   │   │   ├── CWSettingsWindows.stg
│   │   │   │   ├── DebugInFLASH
│   │   │   │   ├── DebugInRAM
│   │   │   │   │   ├── LedCon.axf
│   │   │   │   │   └── ObjectCode
│   │   │   │   │   ├── Ledcon.o
│   │   │   │   │   └── Startup.o
│   │   │   │   └── RelInFLASH
│   │   │   ├── LedCon.mcp
│   │   │   ├── LEDCON.S
│   │   │   └── src
│   │   │   ├── LPC2294.inc
│   │   │   ├── mem_a.scf
│   │   │   ├── mem_b.scf
│   │   │   ├── mem_c.scf
│   │   │   └── Startup.s
│   │   └── LedDisp
│   │   ├── LedDisp_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── LedDisp.axf
│   │   │   │   └── ObjectCode
│   │   │   │   ├── Leddisp.o
│   │   │   │   └── Startup.o
│   │   │   └── RelInFLASH
│   │   ├── LedDisp.mcp
│   │   ├── LEDDISP.S
│   │   └── src
│   │   ├── LPC2294.inc
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   └── Startup.s
│   └── c
│   ├── KeyIn
│   │   ├── KEYIN.C
│   │   ├── KeyIn_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── KeyIn.axf
│   │   │   │   └── ObjectCode
│   │   │   │   ├── heap.o
│   │   │   │   ├── Keyin.o
│   │   │   │   ├── stack.o
│   │   │   │   ├── Startup.o
│   │   │   │   └── target.o
│   │   │   └── RelInFLASH
│   │   ├── KeyIn.mcp
│   │   └── src
│   │   ├── config.h
│   │   ├── heap.s
│   │   ├── IRQ.s
│   │   ├── LPC2294.h
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   ├── stack.s
│   │   ├── Startup.s
│   │   ├── target.c
│   │   └── target.h
│   ├── LedCon
│   │   ├── LEDCON.C
│   │   ├── LedCon_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── LedCon.axf
│   │   │   │   └── ObjectCode
│   │   │   │   ├── heap.o
│   │   │   │   ├── Ledcon.o
│   │   │   │   ├── stack.o
│   │   │   │   ├── Startup.o
│   │   │   │   └── target.o
│   │   │   └── RelInFLASH
│   │   ├── LedCon.mcp
│   │   └── src
│   │   ├── config.h
│   │   ├── heap.s
│   │   ├── IRQ.s
│   │   ├── LPC2294.h
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   ├── stack.s
│   │   ├── Startup.s
│   │   ├── target.c
│   │   └── target.h
│   ├── LedDisp
│   │   ├── LEDDISP.C
│   │   ├── LedDisp_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   │   ├── LedDisp.axf
│   │   │   │   ├── LedDisp.hex
│   │   │   │   └── ObjectCode
│   │   │   │   ├── heap.o
│   │   │   │   ├── Leddisp.o
│   │   │   │   ├── stack.o
│   │   │   │   ├── Startup.o
│   │   │   │   └── target.o
│   │   │   ├── DebugInRAM
│   │   │   │   ├── LedDisp.axf
│   │   │   │   └── ObjectCode
│   │   │   │   ├── heap.o
│   │   │   │   ├── Leddisp.o
│   │   │   │   ├── stack.o
│   │   │   │   ├── Startup.o
│   │   │   │   └── target.o
│   │   │   └── RelInFLASH
│   │   ├── LedDisp.mcp
│   │   └── src
│   │   ├── config.h
│   │   ├── heap.s
│   │   ├── IRQ.s
│   │   ├── LPC2294.h
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   ├── stack.s
│   │   ├── Startup.s
│   │   ├── target.c
│   │   └── target.h
│   └── LedHex
│   ├── Ledhex.c
│   ├── LedHex_Data
│   │   ├── CWSettingsWindows.stg
│   │   ├── DebugInFLASH
│   │   ├── DebugInRAM
│   │   │   ├── LedHex.axf
│   │   │   └── ObjectCode
│   │   │   ├── heap.o
│   │   │   ├── Ledhex.o
│   │   │   ├── stack.o
│   │   │   ├── Startup.o
│   │   │   └── target.o
│   │   └── RelInFLASH
│   ├── LedHex.mcp
│   └── src
│   ├── config.h
│   ├── heap.s
│   ├── IRQ.s
│   ├── LPC2294.h
│   ├── mem_a.scf
│   ├── mem_b.scf
│   ├── mem_c.scf
│   ├── stack.s
│   ├── Startup.s
│   ├── target.c
│   └── target.h
├── I2c
│   ├── ASM
│   │   └── WrEEPROM
│   │   ├── src
│   │   │   ├── LPC2294.inc
│   │   │   ├── mem_a.scf
│   │   │   ├── mem_b.scf
│   │   │   ├── mem_c.scf
│   │   │   └── Startup.s
│   │   ├── WrEEPROM_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── ObjectCode
│   │   │   │   │   ├── Startup.o
│   │   │   │   │   └── Wreeprom.o
│   │   │   │   └── WrEEPROM.axf
│   │   │   └── RelInFLASH
│   │   ├── WrEEPROM.mcp
│   │   └── WREEPROM.S
│   └── C
│   ├── I2cInt
│   │   ├── I2CINT.c
│   │   ├── I2cInt_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── I2cInt.axf
│   │   │   │   └── ObjectCode
│   │   │   │   ├── heap.o
│   │   │   │   ├── I2CINT.o
│   │   │   │   ├── I2CTest.o
│   │   │   │   ├── stack.o
│   │   │   │   ├── Startup.o
│   │   │   │   └── target.o
│   │   │   └── RelInFLASH
│   │   ├── I2CINT.H
│   │   ├── I2cInt.mcp
│   │   ├── I2CTest.c
│   │   └── src
│   │   ├── config.h
│   │   ├── heap.s
│   │   ├── IRQ.s
│   │   ├── LPC2294.h
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   ├── stack.s
│   │   ├── Startup.s
│   │   ├── target.c
│   │   └── target.h
│   └── I2cSlave
│   ├── CSI24WC02.C
│   ├── I2cSlave_Data
│   │   ├── CWSettingsWindows.stg
│   │   ├── DebugInFLASH
│   │   ├── DebugInRAM
│   │   │   ├── I2cSlave.axf
│   │   │   └── ObjectCode
│   │   │   ├── CSI24WC02.o
│   │   │   ├── heap.o
│   │   │   ├── stack.o
│   │   │   ├── Startup.o
│   │   │   └── target.o
│   │   └── RelInFLASH
│   ├── I2cSlave.mcp
│   └── src
│   ├── config.h
│   ├── heap.s
│   ├── IRQ.s
│   ├── LPC2294.h
│   ├── mem_a.scf
│   ├── mem_b.scf
│   ├── mem_c.scf
│   ├── stack.s
│   ├── Startup.s
│   ├── target.c
│   └── target.h
├── IAP
│   ├── ASM
│   │   └── IAPTest
│   │   ├── IAPTest_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── IAPTest.axf
│   │   │   │   └── ObjectCode
│   │   │   │   ├── Iaptest.o
│   │   │   │   └── Startup.o
│   │   │   └── RelInFLASH
│   │   ├── IAPTest.mcp
│   │   ├── IAPTEST.S
│   │   └── src
│   │   ├── LPC2294.inc
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   └── Startup.s
│   └── C
│   └── IAPTest
│   ├── iaptest.c
│   ├── IAPTest_Data
│   │   ├── CWSettingsWindows.stg
│   │   ├── DebugInFLASH
│   │   ├── DebugInRAM
│   │   │   ├── IAPTest.axf
│   │   │   └── ObjectCode
│   │   │   ├── heap.o
│   │   │   ├── iaptest.o
│   │   │   ├── stack.o
│   │   │   ├── Startup.o
│   │   │   └── target.o
│   │   └── RelInFLASH
│   ├── IAPTest.mcp
│   └── src
│   ├── config.h
│   ├── heap.s
│   ├── IRQ.s
│   ├── LPC2294.h
│   ├── mem_a.scf
│   ├── mem_b.scf
│   ├── mem_c.scf
│   ├── stack.s
│   ├── Startup.s
│   ├── target.c
│   └── target.h
├── Power
│   ├── ASM
│   │   └── IdleRun
│   │   ├── IdleRun_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── IdleRun.axf
│   │   │   │   └── ObjectCode
│   │   │   │   ├── IDLERUN.o
│   │   │   │   └── Startup.o
│   │   │   └── RelInFLASH
│   │   ├── IdleRun.mcp
│   │   ├── IDLERUN.s
│   │   └── src
│   │   ├── LPC2294.inc
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   └── Startup.s
│   └── C
│   └── PdRun
│   ├── pdrun.c
│   ├── PdRun_Data
│   │   ├── CWSettingsWindows.stg
│   │   ├── DebugInFLASH
│   │   ├── DebugInRAM
│   │   │   ├── ObjectCode
│   │   │   │   ├── heap.o
│   │   │   │   ├── pdrun.o
│   │   │   │   ├── stack.o
│   │   │   │   ├── Startup.o
│   │   │   │   └── target.o
│   │   │   └── PdRun.axf
│   │   └── RelInFLASH
│   ├── PdRun.mcp
│   └── src
│   ├── config.h
│   ├── heap.s
│   ├── IRQ.s
│   ├── LPC2294.h
│   ├── mem_a.scf
│   ├── mem_b.scf
│   ├── mem_c.scf
│   ├── stack.s
│   ├── Startup.s
│   ├── target.c
│   └── target.h
├── project module
│   ├── ARM Executable Image for lpc21xx
│   │   ├── ARM Executable Image for lpc21xx.mcp
│   │   └── src
│   │   ├── config.h
│   │   ├── heap.s
│   │   ├── IRQ.s
│   │   ├── LPC2294.h
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   ├── stack.s
│   │   ├── Startup.s
│   │   ├── target.c
│   │   └── target.h
│   ├── ARM Executable Image for UCOSII(for lpc21xx)
│   │   ├── ARM Executable Image for UCOSII(for lpc21xx).mcp
│   │   └── src
│   │   ├── config.h
│   │   ├── heap.s
│   │   ├── INCLUDES.H
│   │   ├── IRQ.s
│   │   ├── LPC2294.h
│   │   ├── mem_a.scf
│   │   ├── mem_c.scf
│   │   ├── OS_CFG.H
│   │   ├── stack.s
│   │   ├── Startup.s
│   │   ├── target.c
│   │   └── target.h
│   ├── asm for lpc21xx
│   │   ├── asm for lpc21xx.mcp
│   │   └── src
│   │   ├── LPC2294.inc
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   └── Startup.s
│   ├── Thumb ARM Interworking Image for lpc21xx
│   │   ├── emptyarm.c
│   │   ├── src
│   │   │   ├── config.h
│   │   │   ├── heap.s
│   │   │   ├── IRQ.s
│   │   │   ├── LPC2294.h
│   │   │   ├── mem_a.scf
│   │   │   ├── mem_b.scf
│   │   │   ├── mem_c.scf
│   │   │   ├── stack.s
│   │   │   ├── Startup.s
│   │   │   ├── target.c
│   │   │   └── target.h
│   │   └── Thumb ARM Interworking Image for lpc21xx.mcp
│   ├── Thumb Executable Image for lpc21xx
│   │   ├── src
│   │   │   ├── config.h
│   │   │   ├── heap.s
│   │   │   ├── IRQ.s
│   │   │   ├── LPC2294.h
│   │   │   ├── mem_a.scf
│   │   │   ├── mem_b.scf
│   │   │   ├── mem_c.scf
│   │   │   ├── stack.s
│   │   │   ├── Startup.s
│   │   │   ├── target.c
│   │   │   └── target.h
│   │   └── Thumb Executable Image for lpc21xx.mcp
│   └── Thumb Executable Image for UCOSII(for lpc21xx)
│   ├── emptyarm.c
│   ├── src
│   │   ├── config.h
│   │   ├── heap.s
│   │   ├── INCLUDES.H
│   │   ├── IRQ.s
│   │   ├── LPC2294.h
│   │   ├── mem_a.scf
│   │   ├── mem_c.scf
│   │   ├── OS_CFG.H
│   │   ├── stack.s
│   │   ├── Startup.s
│   │   ├── target.c
│   │   └── target.h
│   └── Thumb Executable Image for UCOSII(for lpc21xx).mcp
├── pwm
│   ├── ASM
│   │   └── PwmOut
│   │   ├── PwmOut_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── ObjectCode
│   │   │   │   │   ├── pwmout.o
│   │   │   │   │   └── Startup.o
│   │   │   │   └── PwmOut.axf
│   │   │   └── RelInFLASH
│   │   ├── PwmOut.mcp
│   │   ├── pwmout.s
│   │   └── src
│   │   ├── LPC2294.inc
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   └── Startup.s
│   └── C
│   └── PwmDac
│   ├── PWMDAC.c
│   ├── PwmDac_Data
│   │   ├── CWSettingsWindows.stg
│   │   ├── DebugInFLASH
│   │   ├── DebugInRAM
│   │   │   ├── ObjectCode
│   │   │   │   ├── heap.o
│   │   │   │   ├── PWMDAC.o
│   │   │   │   ├── stack.o
│   │   │   │   ├── Startup.o
│   │   │   │   └── target.o
│   │   │   └── PwmDac.axf
│   │   └── RelInFLASH
│   ├── PwmDac.mcp
│   └── src
│   ├── config.h
│   ├── heap.s
│   ├── IRQ.s
│   ├── LPC2294.h
│   ├── mem_a.scf
│   ├── mem_b.scf
│   ├── mem_c.scf
│   ├── stack.s
│   ├── Startup.s
│   ├── target.c
│   └── target.h
├── Rtc
│   ├── ASM
│   │   └── TimeCiir
│   │   ├── src
│   │   │   ├── LPC2294.inc
│   │   │   ├── mem_a.scf
│   │   │   ├── mem_b.scf
│   │   │   ├── mem_c.scf
│   │   │   └── Startup.s
│   │   ├── TimeCiir_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── ObjectCode
│   │   │   │   │   ├── Startup.o
│   │   │   │   │   └── TimeCiir.o
│   │   │   │   └── TimeCiir.axf
│   │   │   └── RelInFLASH
│   │   ├── TimeCiir.mcp
│   │   └── TimeCiir.s
│   └── C
│   ├── SendRtc
│   │   ├── sendrtc.c
│   │   ├── SendRtc_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── ObjectCode
│   │   │   │   │   ├── heap.o
│   │   │   │   │   ├── sendrtc.o
│   │   │   │   │   ├── stack.o
│   │   │   │   │   ├── Startup.o
│   │   │   │   │   └── target.o
│   │   │   │   └── SendRtc.axf
│   │   │   └── RelInFLASH
│   │   ├── SendRtc.mcp
│   │   └── src
│   │   ├── config.h
│   │   ├── heap.s
│   │   ├── IRQ.s
│   │   ├── LPC2294.h
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   ├── stack.s
│   │   ├── Startup.s
│   │   ├── target.c
│   │   └── target.h
│   └── TimeCiir
│   ├── src
│   │   ├── config.h
│   │   ├── heap.s
│   │   ├── IRQ.s
│   │   ├── LPC2294.h
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   ├── stack.s
│   │   ├── Startup.s
│   │   ├── target.c
│   │   └── target.h
│   ├── TimeCiir.c
│   ├── TimeCiir_Data
│   │   ├── CWSettingsWindows.stg
│   │   ├── DebugInFLASH
│   │   ├── DebugInRAM
│   │   │   ├── ObjectCode
│   │   │   │   ├── heap.o
│   │   │   │   ├── stack.o
│   │   │   │   ├── Startup.o
│   │   │   │   ├── target.o
│   │   │   │   └── TimeCiir.o
│   │   │   └── TimeCiir.axf
│   │   └── RelInFLASH
│   └── TimeCiir.mcp
├── Spi
│   ├── Asm
│   │   └── SpiDisp
│   │   ├── SpiDisp_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── ObjectCode
│   │   │   │   │   ├── Spidisp.o
│   │   │   │   │   └── Startup.o
│   │   │   │   └── SpiDisp.axf
│   │   │   └── RelInFLASH
│   │   ├── SpiDisp.mcp
│   │   ├── SPIDISP.S
│   │   └── src
│   │   ├── LPC2294.inc
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   └── Startup.s
│   └── C
│   └── SpiDisp
│   ├── spidisp.c
│   ├── SpiDisp_Data
│   │   ├── CWSettingsWindows.stg
│   │   ├── DebugInFLASH
│   │   ├── DebugInRAM
│   │   │   ├── ObjectCode
│   │   │   │   ├── heap.o
│   │   │   │   ├── spidisp.o
│   │   │   │   ├── stack.o
│   │   │   │   ├── Startup.o
│   │   │   │   └── target.o
│   │   │   └── SpiDisp.axf
│   │   └── RelInFLASH
│   ├── SpiDisp.mcp
│   └── src
│   ├── config.h
│   ├── heap.s
│   ├── IRQ.s
│   ├── LPC2294.h
│   ├── mem_a.scf
│   ├── mem_b.scf
│   ├── mem_c.scf
│   ├── stack.s
│   ├── Startup.s
│   ├── target.c
│   └── target.h
├── TIME
│   ├── ASM
│   │   └── TimeOut
│   │   ├── src
│   │   │   ├── LPC2294.inc
│   │   │   ├── mem_a.scf
│   │   │   ├── mem_b.scf
│   │   │   ├── mem_c.scf
│   │   │   └── Startup.s
│   │   ├── TimeOut_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── ObjectCode
│   │   │   │   │   ├── Startup.o
│   │   │   │   │   └── TimeOut.o
│   │   │   │   └── TimeOut.axf
│   │   │   └── RelInFLASH
│   │   ├── TimeOut.mcp
│   │   └── TimeOut.s
│   └── C
│   ├── TimeLed
│   │   ├── src
│   │   │   ├── config.h
│   │   │   ├── heap.s
│   │   │   ├── IRQ.s
│   │   │   ├── LPC2294.h
│   │   │   ├── mem_a.scf
│   │   │   ├── mem_b.scf
│   │   │   ├── mem_c.scf
│   │   │   ├── stack.s
│   │   │   ├── Startup.s
│   │   │   ├── target.c
│   │   │   └── target.h
│   │   ├── TIMELED.C
│   │   ├── TimeLed_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── ObjectCode
│   │   │   │   │   ├── heap.o
│   │   │   │   │   ├── stack.o
│   │   │   │   │   ├── Startup.o
│   │   │   │   │   ├── target.o
│   │   │   │   │   └── Timeled.o
│   │   │   │   └── TimeLed.axf
│   │   │   └── RelInFLASH
│   │   └── TimeLed.mcp
│   └── TimeOut
│   ├── src
│   │   ├── config.h
│   │   ├── heap.s
│   │   ├── IRQ.s
│   │   ├── LPC2294.h
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   ├── stack.s
│   │   ├── Startup.s
│   │   ├── target.c
│   │   └── target.h
│   ├── TimeOUT.c
│   ├── TimeOut_Data
│   │   ├── CWSettingsWindows.stg
│   │   ├── DebugInFLASH
│   │   ├── DebugInRAM
│   │   │   ├── ObjectCode
│   │   │   │   ├── heap.o
│   │   │   │   ├── stack.o
│   │   │   │   ├── Startup.o
│   │   │   │   ├── target.o
│   │   │   │   └── TimeOUT.o
│   │   │   └── TimeOut.axf
│   │   └── RelInFLASH
│   └── TimeOut.mcp
├── UART
│   ├── ASM
│   │   └── SendStr
│   │   ├── SendStr_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── ObjectCode
│   │   │   │   │   ├── SendStr.o
│   │   │   │   │   └── Startup.o
│   │   │   │   └── SendStr.axf
│   │   │   └── RelInFLASH
│   │   ├── SendStr.mcp
│   │   ├── SendStr.S
│   │   └── src
│   │   ├── LPC2294.inc
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   └── Startup.s
│   └── C
│   ├── DataRet
│   │   ├── DataRet.c
│   │   ├── DataRet_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── DataRet.axf
│   │   │   │   └── ObjectCode
│   │   │   │   ├── DataRet.o
│   │   │   │   ├── heap.o
│   │   │   │   ├── stack.o
│   │   │   │   ├── Startup.o
│   │   │   │   └── target.o
│   │   │   └── RelInFLASH
│   │   ├── DataRet.mcp
│   │   └── src
│   │   ├── config.h
│   │   ├── heap.s
│   │   ├── IRQ.s
│   │   ├── LPC2294.h
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   ├── stack.s
│   │   ├── Startup.s
│   │   ├── target.c
│   │   └── target.h
│   └── SendStr
│   ├── SendStr.c
│   ├── SendStr_Data
│   │   ├── CWSettingsWindows.stg
│   │   ├── DebugInFLASH
│   │   ├── DebugInRAM
│   │   │   ├── ObjectCode
│   │   │   │   ├── heap.o
│   │   │   │   ├── SendStr.o
│   │   │   │   ├── stack.o
│   │   │   │   ├── Startup.o
│   │   │   │   └── target.o
│   │   │   └── SendStr.axf
│   │   └── RelInFLASH
│   ├── SendStr.mcp
│   └── src
│   ├── config.h
│   ├── heap.s
│   ├── IRQ.s
│   ├── LPC2294.h
│   ├── mem_a.scf
│   ├── mem_b.scf
│   ├── mem_c.scf
│   ├── stack.s
│   ├── Startup.s
│   ├── target.c
│   └── target.h
├── VIC
│   ├── ASM
│   │   ├── VICDef
│   │   │   ├── EINT0_Def.S
│   │   │   ├── src
│   │   │   │   ├── LPC2294.inc
│   │   │   │   ├── mem_a.scf
│   │   │   │   ├── mem_b.scf
│   │   │   │   ├── mem_c.scf
│   │   │   │   └── Startup.s
│   │   │   ├── VICDef_Data
│   │   │   │   ├── CWSettingsWindows.stg
│   │   │   │   ├── DebugInFLASH
│   │   │   │   ├── DebugInRAM
│   │   │   │   │   ├── ObjectCode
│   │   │   │   │   │   ├── EINT0_Def.o
│   │   │   │   │   │   └── Startup.o
│   │   │   │   │   └── VICDef.axf
│   │   │   │   └── RelInFLASH
│   │   │   └── VICDef.mcp
│   │   └── VICVect
│   │   ├── EINT0_Vect.S
│   │   ├── src
│   │   │   ├── LPC2294.inc
│   │   │   ├── mem_a.scf
│   │   │   ├── mem_b.scf
│   │   │   ├── mem_c.scf
│   │   │   └── Startup.s
│   │   ├── VICVect_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   ├── DebugInRAM
│   │   │   │   ├── ObjectCode
│   │   │   │   │   ├── EINT0_Vect.o
│   │   │   │   │   └── Startup.o
│   │   │   │   └── VICVect.axf
│   │   │   └── RelInFLASH
│   │   └── VICVect.mcp
│   └── C
│   ├── VICDef
│   │   ├── EINT0_Def.c
│   │   ├── src
│   │   │   ├── config.h
│   │   │   ├── heap.s
│   │   │   ├── IRQ.s
│   │   │   ├── LPC2294.h
│   │   │   ├── mem_a.scf
│   │   │   ├── mem_b.scf
│   │   │   ├── mem_c.scf
│   │   │   ├── stack.s
│   │   │   ├── Startup.s
│   │   │   ├── target.c
│   │   │   └── target.h
│   │   ├── VICDef_Data
│   │   │   ├── CWSettingsWindows.stg
│   │   │   ├── DebugInFLASH
│   │   │   │   └── TargetDataWindows.tdt
│   │   │   ├── DebugInRAM
│   │   │   │   ├── ObjectCode
│   │   │   │   │   ├── EINT0_Def.o
│   │   │   │   │   ├── heap.o
│   │   │   │   │   ├── stack.o
│   │   │   │   │   ├── Startup.o
│   │   │   │   │   └── target.o
│   │   │   │   ├── TargetDataWindows.tdt
│   │   │   │   ├── VICDef.axf
│   │   │   │   └── VICDef.bin
│   │   │   └── RelInFLASH
│   │   │   └── TargetDataWindows.tdt
│   │   └── VICDef.mcp
│   └── VICVect
│   ├── EINT03_Vect.c
│   ├── src
│   │   ├── config.h
│   │   ├── heap.s
│   │   ├── IRQ.s
│   │   ├── LPC2294.h
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   ├── stack.s
│   │   ├── Startup.s
│   │   ├── target.c
│   │   └── target.h
│   ├── VICVect_Data
│   │   ├── CWSettingsWindows.stg
│   │   ├── DebugInFLASH
│   │   ├── DebugInRAM
│   │   │   ├── ObjectCode
│   │   │   │   ├── EINT03_Vect.o
│   │   │   │   ├── heap.o
│   │   │   │   ├── stack.o
│   │   │   │   ├── Startup.o
│   │   │   │   └── target.o
│   │   │   └── VICVect.axf
│   │   └── RelInFLASH
│   └── VICVect.mcp
└── Wdt
├── ASM
│   └── WdtRun
│   ├── src
│   │   ├── LPC2294.inc
│   │   ├── mem_a.scf
│   │   ├── mem_b.scf
│   │   ├── mem_c.scf
│   │   └── Startup.s
│   ├── WdtRun_Data
│   │   ├── CWSettingsWindows.stg
│   │   ├── DebugInFLASH
│   │   ├── DebugInRAM
│   │   │   ├── ObjectCode
│   │   │   │   ├── Startup.o
│   │   │   │   └── Wdtrun.o
│   │   │   └── WdtRun.axf
│   │   └── RelInFLASH
│   ├── WdtRun.mcp
│   └── WDTRUN.S
└── C
└── WdtRun
├── src
│   ├── config.h
│   ├── heap.s
│   ├── IRQ.s
│   ├── LPC2294.h
│   ├── mem_a.scf
│   ├── mem_b.scf
│   ├── mem_c.scf
│   ├── stack.s
│   ├── Startup.s
│   ├── target.c
│   └── target.h
├── WDTRUN.C
├── WdtRun_Data
│   ├── CWSettingsWindows.stg
│   ├── DebugInFLASH
│   ├── DebugInRAM
│   │   ├── ObjectCode
│   │   │   ├── heap.o
│   │   │   ├── stack.o
│   │   │   ├── Startup.o
│   │   │   ├── target.o
│   │   │   └── Wdtrun.o
│   │   └── WdtRun.axf
│   └── RelInFLASH
└── WdtRun.mcp

346 directories, 693 files

标签:

实例下载地址

lpc2100系列arm7示例程序大全.rar

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警