在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 周立功 LPC1766 开发板 例程全套

周立功 LPC1766 开发板 例程全套

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:3.01M
  • 下载次数:6
  • 浏览次数:447
  • 发布时间:2020-07-17
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
例程来自价值1700多元的,周立功Cortex-M3 1766开发板,包含Keil配套的全部例程。 包括ADC,DAC,DI,EINT,FlashACC,GPDMA,GPIO,I2C,IAP,PowerDownWakeup,PWM ,QEI,RTC,SPI,SSP, Systick, Timer, Timer_uCOSII, UART.精品!
【实例截图】
【核心代码】
a0qgmi
└── 基础例程
├── ADC
│   ├── ADC0
│   │   ├── ADC0.JPG
│   │   ├── ADC0.uvopt
│   │   ├── ADC0.uvproj
│   │   ├── ADC0_ReleasInFlash.dep
│   │   ├── ADC0_uvopt.bak
│   │   ├── ADC0_uvproj.bak
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── Out
│   │   │   └── ReleaseInFlash
│   │   │   ├── LPC1700.axf
│   │   │   ├── LPC1700.hex
│   │   │   ├── LPC1700.htm
│   │   │   ├── LPC1700.lnp
│   │   │   ├── LPC1700.map
│   │   │   ├── LPC1700.plg
│   │   │   ├── LPC1700.sct
│   │   │   ├── LPC1700.tra
│   │   │   ├── core_cm3.crf
│   │   │   ├── core_cm3.d
│   │   │   ├── core_cm3.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── startup_LPC17xx.lst
│   │   │   ├── startup_LPC17xx.o
│   │   │   ├── system_lpc17xx.crf
│   │   │   ├── system_lpc17xx.d
│   │   │   └── system_lpc17xx.o
│   │   ├── RAM.ini
│   │   └── USER_CODE
│   │   └── main.c
│   ├── ADC0_Burst
│   │   ├── ADC0_Brust.uvopt
│   │   ├── ADC0_Brust.uvproj
│   │   ├── ADC0_Brust_ReleasInFlash.dep
│   │   ├── ADC0_Brust_uvopt.bak
│   │   ├── ADC0_Brust_uvproj.bak
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── Out
│   │   │   └── ReleaseInFlash
│   │   │   └── LPC1700.plg
│   │   ├── RAM.ini
│   │   └── USER_CODE
│   │   └── main.c
│   ├── ADC0_INT
│   │   ├── ADC0_INT.uvopt
│   │   ├── ADC0_INT.uvproj
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   └── USER_CODE
│   │   └── main.c
│   └── ADC1
│   ├── ADC1.JPG
│   ├── ADC1.uvopt
│   ├── ADC1.uvproj
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── RAM.ini
│   └── USER_CODE
│   └── main.c
├── DAC
│   └── DAC_sine
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── DAC.uvopt
│   ├── DAC.uvproj
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── RAM.ini
│   └── USER_CODE
│   └── main.c
├── DI
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── DI.uvopt
│   ├── DI.uvproj
│   ├── DI_ReleasInFlash.dep
│   ├── DI_uvopt.bak
│   ├── DI_uvproj.bak
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── Out
│   │   └── ReleaseInFlash
│   │   └── LPC1700.plg
│   ├── RAM.ini
│   └── USER_CODE
│   └── main.c
├── EINT
│   ├── EINT0
│   │   ├── EINT0_INT
│   │   │   ├── CM3
│   │   │   │   ├── AT89S52.h
│   │   │   │   ├── core_cm3.c
│   │   │   │   └── core_cm3.h
│   │   │   ├── EINT0_INT.uvopt
│   │   │   ├── EINT0_INT.uvproj
│   │   │   ├── EINT0_INT_ReleasInFlash.dep
│   │   │   ├── EINT0_INT_uvopt.bak
│   │   │   ├── EINT0_INT_uvproj.bak
│   │   │   ├── LPC17xx
│   │   │   │   ├── LPC17xx.h
│   │   │   │   ├── Startup
│   │   │   │   │   └── startup_LPC17xx.s
│   │   │   │   ├── system_LPC17xx.c
│   │   │   │   └── system_LPC17xx.h
│   │   │   ├── Out
│   │   │   │   └── ReleaseInFlash
│   │   │   │   └── LPC1700.plg
│   │   │   ├── RAM.ini
│   │   │   └── USER_CODE
│   │   │   └── main.c
│   │   └── EINT0_Polling
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── EINT0_Polling.uvopt
│   │   ├── EINT0_Polling.uvproj
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   └── USER_CODE
│   │   └── main.c
│   └── EINT1
│   ├── EINT1_INT
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── EINT1_INT.uvopt
│   │   ├── EINT1_INT.uvproj
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   └── USER_CODE
│   │   └── main.c
│   └── EINT1_Polling
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── EINT1_Polling.uvopt
│   ├── EINT1_Polling.uvproj
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── RAM.ini
│   └── USER_CODE
│   └── main.c
├── FlashAcc
│   ├── MAM
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── MAM.bmp
│   │   ├── MAM.uvopt
│   │   ├── MAM.uvproj
│   │   ├── RAM.ini
│   │   └── USER_CODE
│   │   └── main.c
│   └── MAM_Test
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── MAM_Test.bmp
│   ├── MAM_Test.uvopt
│   ├── MAM_Test.uvproj
│   ├── RAM.ini
│   └── USER_CODE
│   └── main.c
├── GPDMA
│   └── GPDMA
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── GPDMA.uvopt
│   ├── GPDMA.uvproj
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── RAM.ini
│   └── USER_CODE
│   └── main.c
├── GPIO
│   ├── GPIO_Beep
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── GPIO_BEEP.uvopt
│   │   ├── GPIO_BEEP.uvproj
│   │   ├── GPIO_BEEP_ReleasInFlash.dep
│   │   ├── GPIO_BEEP_uvopt.bak
│   │   ├── GPIO_BEEP_uvproj.bak
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── Out
│   │   │   └── ReleaseInFlash
│   │   │   └── LPC1700.plg
│   │   ├── RAM.ini
│   │   └── USER_CODE
│   │   └── main.c
│   ├── GPIO_KeyIn
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── GPIO_KeyIn.uvopt
│   │   ├── GPIO_KeyIn.uvproj
│   │   ├── GPIO_KeyIn_ReleasInFlash.dep
│   │   ├── GPIO_KeyIn_uvopt.bak
│   │   ├── GPIO_KeyIn_uvproj.bak
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── Out
│   │   │   └── ReleaseInFlash
│   │   │   └── LPC1700.plg
│   │   ├── RAM.ini
│   │   └── USER_CODE
│   │   └── main.c
│   └── GPIO_KeyInterrupt
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── GPIO_KeyInInterrupt.uvopt
│   ├── GPIO_KeyInInterrupt.uvproj
│   ├── GPIO_KeyInInterrupt_DebugInRAM.dep
│   ├── GPIO_KeyInInterrupt_uvopt.bak
│   ├── GPIO_KeyInInterrupt_uvproj.bak
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── Out
│   │   └── DebugInRAM
│   │   └── LPC1700.plg
│   ├── RAM.ini
│   └── USER_CODE
│   └── main.c
├── I2C
│   └── PCF8563
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── I2C
│   │   ├── I2CINT.c
│   │   └── I2CINT.h
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── PCF8563
│   │   ├── PCF8563.c
│   │   └── PCF8563.h
│   ├── PCF8563.bmp
│   ├── PCF8563.uvopt
│   ├── PCF8563.uvproj
│   ├── RAM.ini
│   └── USER_CODE
│   └── main.c
├── IAP
│   ├── DataSave
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── DataSave.uvopt
│   │   ├── DataSave.uvproj
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   └── USER_CODE
│   │   └── main.c
│   └── OnlineUpdate
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── HIGH.bin
│   │   ├── SYSTEM
│   │   └── USER
│   ├── LOW.bin
│   │   ├── SYSTEM
│   │   ├── USER
│   │   └── sscom.ini
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── OnlineUpdate.uvopt
│   ├── OnlineUpdate.uvproj
│   ├── USER_CODE
│   │   ├── IAP
│   │   │   ├── IAP.c
│   │   │   └── IAP.h
│   │   ├── USER
│   │   │   ├── user.c
│   │   │   └── user.h
│   │   └── main.c
│   └── scatterfile
│   ├── HIGH.sct
│   └── LOW.sct
├── PWM
│   ├── MC_PWM
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── JLinkLog.txt
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── MC_PWM.JPG
│   │   ├── MC_PWM.uvopt
│   │   ├── MC_PWM.uvproj
│   │   ├── MC_PWM_ReleasInFlash.dep
│   │   ├── MC_PWM_uvopt.bak
│   │   ├── MC_PWM_uvproj.bak
│   │   ├── Out
│   │   │   └── ReleaseInFlash
│   │   │   ├── LPC1700.axf
│   │   │   ├── LPC1700.hex
│   │   │   ├── LPC1700.htm
│   │   │   ├── LPC1700.lnp
│   │   │   ├── LPC1700.map
│   │   │   ├── LPC1700.plg
│   │   │   ├── LPC1700.sct
│   │   │   ├── LPC1700.tra
│   │   │   ├── core_cm3.crf
│   │   │   ├── core_cm3.d
│   │   │   ├── core_cm3.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── startup_LPC17xx.lst
│   │   │   ├── startup_LPC17xx.o
│   │   │   ├── system_lpc17xx.crf
│   │   │   ├── system_lpc17xx.d
│   │   │   └── system_lpc17xx.o
│   │   ├── RAM.ini
│   │   └── USER_CODE
│   │   └── main.c
│   ├── PWM_DblEdg
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── PWM_DblEdg.JPG
│   │   ├── PWM_DblEdg.uvopt
│   │   ├── PWM_DblEdg.uvproj
│   │   ├── RAM.ini
│   │   └── USER_CODE
│   │   └── main.c
│   └── PWM_Timer
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── JLinkLog.txt
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── Out
│   │   └── ReleaseInFlash
│   │   ├── ExtDll.iex
│   │   ├── LPC1700.axf
│   │   ├── LPC1700.hex
│   │   ├── LPC1700.htm
│   │   ├── LPC1700.lnp
│   │   ├── LPC1700.map
│   │   ├── LPC1700.plg
│   │   ├── LPC1700.sct
│   │   ├── LPC1700.tra
│   │   ├── LPC1700_sct.Bak
│   │   ├── core_cm3.crf
│   │   ├── core_cm3.d
│   │   ├── core_cm3.o
│   │   ├── main.crf
│   │   ├── main.d
│   │   ├── main.o
│   │   ├── startup_LPC17xx.lst
│   │   ├── startup_LPC17xx.o
│   │   ├── system_lpc17xx.crf
│   │   ├── system_lpc17xx.d
│   │   └── system_lpc17xx.o
│   ├── PWM_Timer.uvopt
│   ├── PWM_Timer.uvproj
│   ├── PWM_Timer_ReleasInFlash.dep
│   ├── PWM_Timer_uvopt.bak
│   ├── PWM_Timer_uvproj.bak
│   ├── RAM.ini
│   └── USER_CODE
│   └── main.c
├── PowerDownWakeup
│   ├── DeepPowerDown
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── DeepPowerDown.uvopt
│   │   ├── DeepPowerDown.uvproj
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   └── USER_CODE
│   │   └── main.c
│   └── EINTWakeup
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── EINTWakeup.uvopt
│   ├── EINTWakeup.uvproj
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── RAM.ini
│   └── USER_CODE
│   └── main.c
├── QEI
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── QEI(P1.26和P2.3PWM输出波形).JPG
│   ├── QEI.uvopt
│   ├── QEI.uvproj
│   ├── QEI串口显示.JPG
│   ├── RAM.ini
│   └── USER_CODE
│   └── main.c
├── RTC
│   ├── RTCAlarm
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── RTCAlarm.uvopt
│   │   ├── RTCAlarm.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   ├── RTCWake
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── RTCWake.uvopt
│   │   ├── RTCWake.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   └── WanNianLi
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── RAM.ini
│   ├── USER_CODE
│   │   └── main.c
│   ├── WanNianLi.uvopt
│   └── WanNianLi.uvproj
├── SPI
│   ├── SPI_Master
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── SPI_Master.uvopt
│   │   ├── SPI_Master.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   ├── SPI_NorFlash
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── MX25L1602Drv
│   │   │   ├── MX25L1602Drv.c
│   │   │   └── MX25L1602Drv.h
│   │   ├── RAM.ini
│   │   ├── SPI_NorFlash.uvopt
│   │   ├── SPI_NorFlash.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   └── SPI_Slave
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── RAM.ini
│   ├── SPI_Slave.uvopt
│   ├── SPI_Slave.uvproj
│   └── USER_CODE
│   └── main.c
├── SSP
│   ├── SSP0_DMA
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── SSP0_DMA.uvopt
│   │   ├── SSP0_DMA.uvproj
│   │   ├── SSP_DMA.JPG
│   │   └── USER_CODE
│   │   └── main.c
│   ├── SSP0_Master
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── SSP0_Master.jpg
│   │   ├── SSP0_Master.uvopt
│   │   ├── SSP0_Master.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   └── SSP0_Slave
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── RAM.ini
│   ├── SSP0_Slave.uvopt
│   ├── SSP0_Slave.uvproj
│   └── USER_CODE
│   └── main.c
├── Systick
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── RAM.ini
│   ├── SysTick.uvopt
│   ├── SysTick.uvproj
│   ├── USER_CODE
│   │   └── main.c
│   └── 系统节拍定时器延时.jpg
├── Timer
│   ├── Counter
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── Counter.uvopt
│   │   ├── Counter.uvproj
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   └── USER_CODE
│   │   └── main.c
│   ├── TimerCap
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── TimerCap.uvopt
│   │   ├── TimerCap.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   ├── TimerCapInt
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── TimerCapInt.uvopt
│   │   ├── TimerCapInt.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   ├── TimerMat
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── TimerMat.jpg
│   │   ├── TimerMat.uvopt
│   │   ├── TimerMat.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   ├── TimerMatInt
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── TimerMatInt.uvopt
│   │   ├── TimerMatInt.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   ├── TimerPolling
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── TimerPolling.uvopt
│   │   ├── TimerPolling.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   └── TimerRIT
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── RAM.ini
│   ├── TimerRIT.uvopt
│   ├── TimerRIT.uvproj
│   └── USER_CODE
│   └── main.c
├── Timer_uCOSII
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── RAM.ini
│   ├── Timer_uCOS-II.uvopt
│   ├── Timer_uCOS-II.uvproj
│   ├── USER_CODE
│   │   ├── IRQ.h
│   │   └── main.c
│   └── uCOS-II
│   ├── INCLUDES.H
│   ├── OS_CFG.H
│   ├── README.txt
│   ├── cpu
│   │   ├── Os_cpu_c.c
│   │   └── os_cpu.h
│   └── hook
│   └── uCOS-II hook.lib
└── UART
├── UART0
│   ├── UART0_AutoBaud
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── JLinkLog.txt
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── Out
│   │   │   └── ReleaseInFlash
│   │   │   ├── LPC1700.axf
│   │   │   ├── LPC1700.hex
│   │   │   ├── LPC1700.htm
│   │   │   ├── LPC1700.lnp
│   │   │   ├── LPC1700.map
│   │   │   ├── LPC1700.plg
│   │   │   ├── LPC1700.sct
│   │   │   ├── LPC1700.tra
│   │   │   ├── core_cm3.crf
│   │   │   ├── core_cm3.d
│   │   │   ├── core_cm3.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── startup_LPC17xx.lst
│   │   │   ├── startup_LPC17xx.o
│   │   │   ├── system_lpc17xx.crf
│   │   │   ├── system_lpc17xx.d
│   │   │   └── system_lpc17xx.o
│   │   ├── RAM.ini
│   │   ├── UART0_AutoBaud.uvopt
│   │   ├── UART0_AutoBaud.uvproj
│   │   ├── UART0_AutoBaud_ReleasInFlash.dep
│   │   ├── UART0_AutoBaud_uvopt.bak
│   │   ├── UART0_AutoBaud_uvproj.bak
│   │   └── USER_CODE
│   │   └── main.c
│   ├── UART0_DMA_Recv
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── UART0_DMA_Recv.uvopt
│   │   ├── UART0_DMA_Recv.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   ├── UART0_DMA_Send
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── UART0_DMA_Send.uvopt
│   │   ├── UART0_DMA_Send.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   ├── UART0_FDR
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── UART0_FDR.uvopt
│   │   ├── UART0_FDR.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   ├── UART0_INT
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── UART0_INT.uvopt
│   │   ├── UART0_INT.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   └── UART0_Polling
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── RAM.ini
│   ├── UART0_Polling.uvopt
│   ├── UART0_Polling.uvproj
│   └── USER_CODE
│   └── main.c
├── UART1
│   ├── UART1_INT
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── UART1_INT.uvopt
│   │   ├── UART1_INT.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   ├── UART1_Modem
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── UART1_Modem.uvopt
│   │   ├── UART1_Modem.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   ├── UART1_Polling
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── UART1_Polling.uvopt
│   │   ├── UART1_Polling.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   └── UART1_RS485
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── RAM.ini
│   ├── UART1_RS485.uvopt
│   ├── UART1_RS485.uvproj
│   └── USER_CODE
│   └── main.c
├── UART2
│   ├── UART2_AutoBaud
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── UART2_AutoBaud.uvopt
│   │   ├── UART2_AutoBaud.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   ├── UART2_INT
│   │   ├── CM3
│   │   │   ├── core_cm3.c
│   │   │   └── core_cm3.h
│   │   ├── LPC17xx
│   │   │   ├── LPC17xx.h
│   │   │   ├── Startup
│   │   │   │   └── startup_LPC17xx.s
│   │   │   ├── system_LPC17xx.c
│   │   │   └── system_LPC17xx.h
│   │   ├── RAM.ini
│   │   ├── UART2_INT.uvopt
│   │   ├── UART2_INT.uvproj
│   │   └── USER_CODE
│   │   └── main.c
│   └── UART2_Polling
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── RAM.ini
│   ├── UART2_Polling.uvopt
│   ├── UART2_Polling.uvproj
│   └── USER_CODE
│   └── main.c
└── UART3
├── UART3_FDR
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── RAM.ini
│   ├── UART3_FDR.uvopt
│   ├── UART3_FDR.uvproj
│   └── USER_CODE
│   └── main.c
├── UART3_INT
│   ├── CM3
│   │   ├── core_cm3.c
│   │   └── core_cm3.h
│   ├── LPC17xx
│   │   ├── LPC17xx.h
│   │   ├── Startup
│   │   │   └── startup_LPC17xx.s
│   │   ├── system_LPC17xx.c
│   │   └── system_LPC17xx.h
│   ├── RAM.ini
│   ├── UART3_INT.uvopt
│   ├── UART3_INT.uvproj
│   └── USER_CODE
│   └── main.c
└── UART3_Polling
├── CM3
│   ├── core_cm3.c
│   └── core_cm3.h
├── LPC17xx
│   ├── LPC17xx.h
│   ├── Startup
│   │   └── startup_LPC17xx.s
│   ├── system_LPC17xx.c
│   └── system_LPC17xx.h
├── RAM.ini
├── UART3_Polling.uvopt
├── UART3_Polling.uvproj
└── USER_CODE
└── main.c

348 directories, 744 files

标签:

实例下载地址

周立功 LPC1766 开发板 例程全套

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警