在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → CT117E蓝嵌入式资源,各个模块代码,文档,模拟题例子程序

CT117E蓝嵌入式资源,各个模块代码,文档,模拟题例子程序

一般编程问题

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

实例介绍

【实例简介】
CT117E嵌入式竞赛板蓝桥杯资源,各个模块代码,文档,模拟题例子程序,模拟题试卷,真题试卷
【实例截图】
【核心代码】
蓝桥杯代码
└── 蓝桥杯代码
├── Examples
│   └── Examples
│   ├── 1.LED_TEST
│   │   ├── INC
│   │   │   ├── led.h
│   │   │   ├── stm32f10x_conf.h
│   │   │   └── stm32f10x_it.h
│   │   ├── MDK
│   │   │   ├── LED.map
│   │   │   ├── LED.plg
│   │   │   ├── LED.uvgui.Administrator
│   │   │   ├── LED.uvgui.hanlinson
│   │   │   ├── LED.uvgui_Administrator.bak
│   │   │   ├── LED.uvopt
│   │   │   ├── LED.uvproj
│   │   │   ├── LED_Target 1.dep
│   │   │   └── startup_stm32f10x_md.lst
│   │   ├── OUTPUT
│   │   │   ├── LED.axf
│   │   │   ├── LED.build_log.htm
│   │   │   ├── LED.hex
│   │   │   ├── LED.htm
│   │   │   ├── LED.lnp
│   │   │   ├── LED.plg
│   │   │   ├── core_cm3.crf
│   │   │   ├── core_cm3.d
│   │   │   ├── core_cm3.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── startup_stm32f10x_md.d
│   │   │   ├── startup_stm32f10x_md.o
│   │   │   ├── stm32f10x_gpio.crf
│   │   │   ├── stm32f10x_gpio.d
│   │   │   ├── stm32f10x_gpio.o
│   │   │   ├── stm32f10x_it.crf
│   │   │   ├── stm32f10x_it.d
│   │   │   ├── stm32f10x_it.o
│   │   │   ├── stm32f10x_rcc.crf
│   │   │   ├── stm32f10x_rcc.d
│   │   │   ├── stm32f10x_rcc.o
│   │   │   ├── system_stm32f10x.crf
│   │   │   ├── system_stm32f10x.d
│   │   │   └── system_stm32f10x.o
│   │   └── SRE
│   │   ├── main.c
│   │   └── stm32f10x_it.c
│   ├── 10.TIM_PWM_Out
│   │   ├── INC
│   │   │   ├── fonts.H
│   │   │   ├── lcd.h
│   │   │   ├── led.h
│   │   │   ├── stm32f10x_conf.h
│   │   │   └── stm32f10x_it.h
│   │   ├── MDK
│   │   │   ├── TIM_PWM_Out.map
│   │   │   ├── TIM_PWM_Out.uvgui.Administrator
│   │   │   ├── TIM_PWM_Out.uvgui_Administrator.bak
│   │   │   ├── TIM_PWM_Out.uvopt
│   │   │   ├── TIM_PWM_Out.uvproj
│   │   │   ├── TIM_PWM_Out_Target 1.dep
│   │   │   ├── TIM_Target 1.dep
│   │   │   └── startup_stm32f10x_md.lst
│   │   ├── OUTPUT
│   │   │   ├── TIM_PWM_Out.axf
│   │   │   ├── TIM_PWM_Out.hex
│   │   │   ├── TIM_PWM_Out.htm
│   │   │   ├── TIM_PWM_Out.lnp
│   │   │   ├── TIM_PWM_Out.plg
│   │   │   ├── core_cm3.crf
│   │   │   ├── core_cm3.d
│   │   │   ├── core_cm3.o
│   │   │   ├── lcd.crf
│   │   │   ├── lcd.d
│   │   │   ├── lcd.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── misc.crf
│   │   │   ├── misc.d
│   │   │   ├── misc.o
│   │   │   ├── startup_stm32f10x_md.d
│   │   │   ├── startup_stm32f10x_md.o
│   │   │   ├── stm32f10x_gpio.crf
│   │   │   ├── stm32f10x_gpio.d
│   │   │   ├── stm32f10x_gpio.o
│   │   │   ├── stm32f10x_it.crf
│   │   │   ├── stm32f10x_it.d
│   │   │   ├── stm32f10x_it.o
│   │   │   ├── stm32f10x_rcc.crf
│   │   │   ├── stm32f10x_rcc.d
│   │   │   ├── stm32f10x_rcc.o
│   │   │   ├── stm32f10x_tim.crf
│   │   │   ├── stm32f10x_tim.d
│   │   │   ├── stm32f10x_tim.o
│   │   │   ├── system_stm32f10x.crf
│   │   │   ├── system_stm32f10x.d
│   │   │   └── system_stm32f10x.o
│   │   └── SRE
│   │   ├── lcd.c
│   │   ├── led.c
│   │   ├── main.c
│   │   └── stm32f10x_it.c
│   ├── 11.EEPROM
│   │   ├── INC
│   │   │   ├── fonts.H
│   │   │   ├── i2c.h
│   │   │   ├── lcd.h
│   │   │   ├── led.h
│   │   │   ├── stm32f10x_conf.h
│   │   │   └── stm32f10x_it.h
│   │   ├── MDK
│   │   │   ├── EEPROM.map
│   │   │   ├── EEPROM.uvgui.Administrator
│   │   │   ├── EEPROM.uvgui_Administrator.bak
│   │   │   ├── EEPROM.uvopt
│   │   │   ├── EEPROM.uvproj
│   │   │   ├── EEPROM_Target 1.dep
│   │   │   └── startup_stm32f10x_md.lst
│   │   ├── OUTPUT
│   │   │   ├── EEPROM.axf
│   │   │   ├── EEPROM.hex
│   │   │   ├── EEPROM.htm
│   │   │   ├── EEPROM.lnp
│   │   │   ├── EEPROM.plg
│   │   │   ├── core_cm3.crf
│   │   │   ├── core_cm3.d
│   │   │   ├── core_cm3.o
│   │   │   ├── i2c.crf
│   │   │   ├── i2c.d
│   │   │   ├── i2c.o
│   │   │   ├── lcd.crf
│   │   │   ├── lcd.d
│   │   │   ├── lcd.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── misc.crf
│   │   │   ├── misc.d
│   │   │   ├── misc.o
│   │   │   ├── startup_stm32f10x_md.d
│   │   │   ├── startup_stm32f10x_md.o
│   │   │   ├── stm32f10x_gpio.crf
│   │   │   ├── stm32f10x_gpio.d
│   │   │   ├── stm32f10x_gpio.o
│   │   │   ├── stm32f10x_i2c.crf
│   │   │   ├── stm32f10x_i2c.d
│   │   │   ├── stm32f10x_i2c.o
│   │   │   ├── stm32f10x_it.crf
│   │   │   ├── stm32f10x_it.d
│   │   │   ├── stm32f10x_it.o
│   │   │   ├── stm32f10x_rcc.crf
│   │   │   ├── stm32f10x_rcc.d
│   │   │   ├── stm32f10x_rcc.o
│   │   │   ├── system_stm32f10x.crf
│   │   │   ├── system_stm32f10x.d
│   │   │   └── system_stm32f10x.o
│   │   └── SRE
│   │   ├── i2c.c
│   │   ├── lcd.c
│   │   ├── led.c
│   │   ├── main.c
│   │   └── stm32f10x_it.c
│   ├── 12.USART_RX_TEST
│   │   ├── INC
│   │   │   ├── fonts.H
│   │   │   ├── lcd.h
│   │   │   ├── stm32f10x_conf.h
│   │   │   └── stm32f10x_it.h
│   │   ├── MDK
│   │   │   ├── USART_RX.map
│   │   │   ├── USART_RX.uvgui.Administrator
│   │   │   ├── USART_RX.uvgui_Administrator.bak
│   │   │   ├── USART_RX.uvopt
│   │   │   ├── USART_RX.uvproj
│   │   │   ├── USART_RX_Target 1.dep
│   │   │   └── startup_stm32f10x_md.lst
│   │   ├── OUTPUT
│   │   │   ├── USART_RX.axf
│   │   │   ├── USART_RX.hex
│   │   │   ├── USART_RX.htm
│   │   │   ├── USART_RX.lnp
│   │   │   ├── USART_RX.plg
│   │   │   ├── core_cm3.crf
│   │   │   ├── core_cm3.d
│   │   │   ├── core_cm3.o
│   │   │   ├── lcd.crf
│   │   │   ├── lcd.d
│   │   │   ├── lcd.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── misc.crf
│   │   │   ├── misc.d
│   │   │   ├── misc.o
│   │   │   ├── startup_stm32f10x_md.d
│   │   │   ├── startup_stm32f10x_md.o
│   │   │   ├── stm32f10x_gpio.crf
│   │   │   ├── stm32f10x_gpio.d
│   │   │   ├── stm32f10x_gpio.o
│   │   │   ├── stm32f10x_it.crf
│   │   │   ├── stm32f10x_it.d
│   │   │   ├── stm32f10x_it.o
│   │   │   ├── stm32f10x_rcc.crf
│   │   │   ├── stm32f10x_rcc.d
│   │   │   ├── stm32f10x_rcc.o
│   │   │   ├── stm32f10x_usart.crf
│   │   │   ├── stm32f10x_usart.d
│   │   │   ├── stm32f10x_usart.o
│   │   │   ├── system_stm32f10x.crf
│   │   │   ├── system_stm32f10x.d
│   │   │   └── system_stm32f10x.o
│   │   └── SRE
│   │   ├── i2c.c
│   │   ├── lcd.c
│   │   ├── led.c
│   │   ├── main.c
│   │   └── stm32f10x_it.c
│   ├── 13.RTC
│   │   ├── INC
│   │   │   ├── fonts.H
│   │   │   ├── lcd.h
│   │   │   ├── stm32f10x_conf.h
│   │   │   └── stm32f10x_it.h
│   │   ├── MDK
│   │   │   ├── RTC.uvgui.Administrator
│   │   │   ├── RTC.uvgui_Administrator.bak
│   │   │   ├── RTC.uvopt
│   │   │   ├── RTC.uvproj
│   │   │   ├── RTC_TEST.map
│   │   │   ├── RTC_Target 1.dep
│   │   │   └── startup_stm32f10x_md.lst
│   │   ├── OUTPUT
│   │   │   ├── RTC_TEST.axf
│   │   │   ├── RTC_TEST.hex
│   │   │   ├── RTC_TEST.htm
│   │   │   ├── RTC_TEST.lnp
│   │   │   ├── RTC_TEST.plg
│   │   │   ├── core_cm3.crf
│   │   │   ├── core_cm3.d
│   │   │   ├── core_cm3.o
│   │   │   ├── lcd.crf
│   │   │   ├── lcd.d
│   │   │   ├── lcd.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── misc.crf
│   │   │   ├── misc.d
│   │   │   ├── misc.o
│   │   │   ├── startup_stm32f10x_md.d
│   │   │   ├── startup_stm32f10x_md.o
│   │   │   ├── stm32f10x_bkp.crf
│   │   │   ├── stm32f10x_bkp.d
│   │   │   ├── stm32f10x_bkp.o
│   │   │   ├── stm32f10x_gpio.crf
│   │   │   ├── stm32f10x_gpio.d
│   │   │   ├── stm32f10x_gpio.o
│   │   │   ├── stm32f10x_i2c.crf
│   │   │   ├── stm32f10x_i2c.d
│   │   │   ├── stm32f10x_i2c.o
│   │   │   ├── stm32f10x_it.crf
│   │   │   ├── stm32f10x_it.d
│   │   │   ├── stm32f10x_it.o
│   │   │   ├── stm32f10x_pwr.crf
│   │   │   ├── stm32f10x_pwr.d
│   │   │   ├── stm32f10x_pwr.o
│   │   │   ├── stm32f10x_rcc.crf
│   │   │   ├── stm32f10x_rcc.d
│   │   │   ├── stm32f10x_rcc.o
│   │   │   ├── stm32f10x_rtc.crf
│   │   │   ├── stm32f10x_rtc.d
│   │   │   ├── stm32f10x_rtc.o
│   │   │   ├── system_stm32f10x.crf
│   │   │   ├── system_stm32f10x.d
│   │   │   └── system_stm32f10x.o
│   │   └── SRE
│   │   ├── lcd.c
│   │   ├── main.c
│   │   └── stm32f10x_it.c
│   ├── 14.BUZZ_TEST
│   │   ├── INC
│   │   │   ├── fonts.H
│   │   │   ├── lcd.h
│   │   │   ├── stm32f10x_conf.h
│   │   │   └── stm32f10x_it.h
│   │   ├── MDK
│   │   │   ├── BUZZ_TEST.map
│   │   │   ├── BUZZ_TEST.uvgui.Administrator
│   │   │   ├── BUZZ_TEST.uvopt
│   │   │   ├── BUZZ_TEST.uvproj
│   │   │   ├── BUZZ_TEST_Target 1.dep
│   │   │   └── startup_stm32f10x_md.lst
│   │   ├── OUTPUT
│   │   │   ├── BUZZ_TEST.axf
│   │   │   ├── BUZZ_TEST.hex
│   │   │   ├── BUZZ_TEST.htm
│   │   │   ├── BUZZ_TEST.lnp
│   │   │   ├── BUZZ_TEST.plg
│   │   │   ├── core_cm3.crf
│   │   │   ├── core_cm3.d
│   │   │   ├── core_cm3.o
│   │   │   ├── lcd.crf
│   │   │   ├── lcd.d
│   │   │   ├── lcd.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── startup_stm32f10x_md.d
│   │   │   ├── startup_stm32f10x_md.o
│   │   │   ├── stm32f10x_gpio.crf
│   │   │   ├── stm32f10x_gpio.d
│   │   │   ├── stm32f10x_gpio.o
│   │   │   ├── stm32f10x_it.crf
│   │   │   ├── stm32f10x_it.d
│   │   │   ├── stm32f10x_it.o
│   │   │   ├── stm32f10x_rcc.crf
│   │   │   ├── stm32f10x_rcc.d
│   │   │   ├── stm32f10x_rcc.o
│   │   │   ├── system_stm32f10x.crf
│   │   │   ├── system_stm32f10x.d
│   │   │   └── system_stm32f10x.o
│   │   └── SRE
│   │   ├── lcd.c
│   │   ├── main.c
│   │   └── stm32f10x_it.c
│   ├── 2.SysTick
│   │   ├── INC
│   │   │   ├── led.h
│   │   │   ├── stm32f10x_conf.h
│   │   │   └── stm32f10x_it.h
│   │   ├── MDK
│   │   │   ├── SysTick.map
│   │   │   ├── SysTick.uvgui.Administrator
│   │   │   ├── SysTick.uvgui_Administrator.bak
│   │   │   ├── SysTick.uvopt
│   │   │   ├── SysTick.uvproj
│   │   │   ├── SysTick_Target 1.dep
│   │   │   └── startup_stm32f10x_md.lst
│   │   ├── OUTPUT
│   │   │   ├── SysTick.axf
│   │   │   ├── SysTick.hex
│   │   │   ├── SysTick.htm
│   │   │   ├── SysTick.lnp
│   │   │   ├── SysTick.plg
│   │   │   ├── core_cm3.crf
│   │   │   ├── core_cm3.d
│   │   │   ├── core_cm3.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── startup_stm32f10x_md.d
│   │   │   ├── startup_stm32f10x_md.o
│   │   │   ├── stm32f10x_gpio.crf
│   │   │   ├── stm32f10x_gpio.d
│   │   │   ├── stm32f10x_gpio.o
│   │   │   ├── stm32f10x_it.crf
│   │   │   ├── stm32f10x_it.d
│   │   │   ├── stm32f10x_it.o
│   │   │   ├── stm32f10x_rcc.crf
│   │   │   ├── stm32f10x_rcc.d
│   │   │   ├── stm32f10x_rcc.o
│   │   │   ├── system_stm32f10x.crf
│   │   │   ├── system_stm32f10x.d
│   │   │   └── system_stm32f10x.o
│   │   └── SRE
│   │   ├── main.c
│   │   └── stm32f10x_it.c
│   ├── 3.USART_TEST
│   │   ├── INC
│   │   │   ├── stm32f10x_conf.h
│   │   │   └── stm32f10x_it.h
│   │   ├── MDK
│   │   │   ├── USART.map
│   │   │   ├── USART.uvgui.Administrator
│   │   │   ├── USART.uvgui_Administrator.bak
│   │   │   ├── USART.uvopt
│   │   │   ├── USART.uvproj
│   │   │   ├── USART_Target 1.dep
│   │   │   └── startup_stm32f10x_md.lst
│   │   ├── OUTPUT
│   │   │   ├── USART.axf
│   │   │   ├── USART.hex
│   │   │   ├── USART.htm
│   │   │   ├── USART.lnp
│   │   │   ├── USART.plg
│   │   │   ├── core_cm3.crf
│   │   │   ├── core_cm3.d
│   │   │   ├── core_cm3.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── startup_stm32f10x_md.d
│   │   │   ├── startup_stm32f10x_md.o
│   │   │   ├── stm32f10x_gpio.crf
│   │   │   ├── stm32f10x_gpio.d
│   │   │   ├── stm32f10x_gpio.o
│   │   │   ├── stm32f10x_it.crf
│   │   │   ├── stm32f10x_it.d
│   │   │   ├── stm32f10x_it.o
│   │   │   ├── stm32f10x_rcc.crf
│   │   │   ├── stm32f10x_rcc.d
│   │   │   ├── stm32f10x_rcc.o
│   │   │   ├── stm32f10x_usart.crf
│   │   │   ├── stm32f10x_usart.d
│   │   │   ├── stm32f10x_usart.o
│   │   │   ├── system_stm32f10x.crf
│   │   │   ├── system_stm32f10x.d
│   │   │   └── system_stm32f10x.o
│   │   └── SRE
│   │   ├── main.c
│   │   └── stm32f10x_it.c
│   ├── 4.LCD_ASCII
│   │   ├── INC
│   │   │   ├── fonts.H
│   │   │   ├── lcd.h
│   │   │   ├── stm32f10x_conf.h
│   │   │   └── stm32f10x_it.h
│   │   ├── MDK
│   │   │   ├── LCD.map
│   │   │   ├── LCD.uvgui.Administrator
│   │   │   ├── LCD.uvgui_Administrator.bak
│   │   │   ├── LCD.uvopt
│   │   │   ├── LCD.uvproj
│   │   │   ├── LCD_Target 1.dep
│   │   │   └── startup_stm32f10x_md.lst
│   │   ├── OUTPUT
│   │   │   ├── LCD.axf
│   │   │   ├── LCD.hex
│   │   │   ├── LCD.htm
│   │   │   ├── LCD.lnp
│   │   │   ├── LCD.plg
│   │   │   ├── core_cm3.crf
│   │   │   ├── core_cm3.d
│   │   │   ├── core_cm3.o
│   │   │   ├── lcd.crf
│   │   │   ├── lcd.d
│   │   │   ├── lcd.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── startup_stm32f10x_md.d
│   │   │   ├── startup_stm32f10x_md.o
│   │   │   ├── stm32f10x_gpio.crf
│   │   │   ├── stm32f10x_gpio.d
│   │   │   ├── stm32f10x_gpio.o
│   │   │   ├── stm32f10x_it.crf
│   │   │   ├── stm32f10x_it.d
│   │   │   ├── stm32f10x_it.o
│   │   │   ├── stm32f10x_rcc.crf
│   │   │   ├── stm32f10x_rcc.d
│   │   │   ├── stm32f10x_rcc.o
│   │   │   ├── system_stm32f10x.crf
│   │   │   ├── system_stm32f10x.d
│   │   │   └── system_stm32f10x.o
│   │   └── SRE
│   │   ├── lcd.c
│   │   ├── main.c
│   │   └── stm32f10x_it.c
│   ├── 5.KEY_TEST
│   │   ├── INC
│   │   │   ├── fonts.H
│   │   │   ├── lcd.h
│   │   │   ├── stm32f10x_conf.h
│   │   │   └── stm32f10x_it.h
│   │   ├── MDK
│   │   │   ├── KEY_TEST.map
│   │   │   ├── KEY_TEST.uvgui.zhu
│   │   │   ├── KEY_TEST.uvopt
│   │   │   ├── KEY_TEST.uvproj
│   │   │   ├── KEY_TEST_Target 1.dep
│   │   │   └── startup_stm32f10x_md.lst
│   │   ├── OUTPUT
│   │   │   ├── KEY_TEST.htm
│   │   │   └── KEY_TEST.plg
│   │   └── SRE
│   │   ├── lcd.c
│   │   ├── main.c
│   │   └── stm32f10x_it.c
│   ├── 6.KEY_EXTI
│   │   ├── INC
│   │   │   ├── fonts.H
│   │   │   ├── lcd.h
│   │   │   ├── stm32f10x_conf.h
│   │   │   └── stm32f10x_it.h
│   │   ├── MDK
│   │   │   ├── KEY_EXTI.map
│   │   │   ├── KEY_EXTI.uvgui.Administrator
│   │   │   ├── KEY_EXTI.uvgui.zhu
│   │   │   ├── KEY_EXTI.uvgui_Administrator.bak
│   │   │   ├── KEY_EXTI.uvopt
│   │   │   ├── KEY_EXTI.uvproj
│   │   │   ├── KEY_EXTI_Target 1.dep
│   │   │   └── startup_stm32f10x_md.lst
│   │   ├── OUTPUT
│   │   │   ├── KEY_EXTI.axf
│   │   │   ├── KEY_EXTI.hex
│   │   │   ├── KEY_EXTI.htm
│   │   │   ├── KEY_EXTI.lnp
│   │   │   ├── KEY_EXTI.plg
│   │   │   ├── core_cm3.crf
│   │   │   ├── core_cm3.d
│   │   │   ├── core_cm3.o
│   │   │   ├── lcd.crf
│   │   │   ├── lcd.d
│   │   │   ├── lcd.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── misc.crf
│   │   │   ├── misc.d
│   │   │   ├── misc.o
│   │   │   ├── startup_stm32f10x_md.d
│   │   │   ├── startup_stm32f10x_md.o
│   │   │   ├── stm32f10x_exti.crf
│   │   │   ├── stm32f10x_exti.d
│   │   │   ├── stm32f10x_exti.o
│   │   │   ├── stm32f10x_gpio.crf
│   │   │   ├── stm32f10x_gpio.d
│   │   │   ├── stm32f10x_gpio.o
│   │   │   ├── stm32f10x_it.crf
│   │   │   ├── stm32f10x_it.d
│   │   │   ├── stm32f10x_it.o
│   │   │   ├── stm32f10x_rcc.crf
│   │   │   ├── stm32f10x_rcc.d
│   │   │   ├── stm32f10x_rcc.o
│   │   │   ├── system_stm32f10x.crf
│   │   │   ├── system_stm32f10x.d
│   │   │   └── system_stm32f10x.o
│   │   └── SRE
│   │   ├── lcd.c
│   │   ├── main.c
│   │   └── stm32f10x_it.c
│   ├── 7.ADC
│   │   ├── INC
│   │   │   ├── fonts.H
│   │   │   ├── lcd.h
│   │   │   ├── stm32f10x_conf.h
│   │   │   └── stm32f10x_it.h
│   │   ├── MDK
│   │   │   ├── ADC.map
│   │   │   ├── ADC.uvgui.zhu
│   │   │   ├── ADC.uvopt
│   │   │   ├── ADC.uvproj
│   │   │   ├── ADC_Target 1.dep
│   │   │   └── startup_stm32f10x_md.lst
│   │   ├── OUTPUT
│   │   │   ├── ADC.htm
│   │   │   └── ADC.plg
│   │   └── SRE
│   │   ├── lcd.c
│   │   ├── main.c
│   │   └── stm32f10x_it.c
│   ├── 8.ADC_Temperature
│   │   ├── INC
│   │   │   ├── fonts.H
│   │   │   ├── lcd.h
│   │   │   ├── stm32f10x_conf.h
│   │   │   └── stm32f10x_it.h
│   │   ├── MDK
│   │   │   ├── ADC_Temperature.map
│   │   │   ├── ADC_Temperature.uvgui.Administrator
│   │   │   ├── ADC_Temperature.uvgui_Administrator.bak
│   │   │   ├── ADC_Temperature.uvopt
│   │   │   ├── ADC_Temperature.uvproj
│   │   │   ├── ADC_Temperature_Target 1.dep
│   │   │   ├── Nu_Link_Driver.ini
│   │   │   └── startup_stm32f10x_md.lst
│   │   ├── OUTPUT
│   │   │   ├── ADC_Temperature.axf
│   │   │   ├── ADC_Temperature.hex
│   │   │   ├── ADC_Temperature.htm
│   │   │   ├── ADC_Temperature.lnp
│   │   │   ├── ADC_Temperature.plg
│   │   │   ├── core_cm3.crf
│   │   │   ├── core_cm3.d
│   │   │   ├── core_cm3.o
│   │   │   ├── lcd.crf
│   │   │   ├── lcd.d
│   │   │   ├── lcd.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── misc.crf
│   │   │   ├── misc.d
│   │   │   ├── misc.o
│   │   │   ├── startup_stm32f10x_md.d
│   │   │   ├── startup_stm32f10x_md.o
│   │   │   ├── stm32f10x_adc.crf
│   │   │   ├── stm32f10x_adc.d
│   │   │   ├── stm32f10x_adc.o
│   │   │   ├── stm32f10x_gpio.crf
│   │   │   ├── stm32f10x_gpio.d
│   │   │   ├── stm32f10x_gpio.o
│   │   │   ├── stm32f10x_it.crf
│   │   │   ├── stm32f10x_it.d
│   │   │   ├── stm32f10x_it.o
│   │   │   ├── stm32f10x_rcc.crf
│   │   │   ├── stm32f10x_rcc.d
│   │   │   ├── stm32f10x_rcc.o
│   │   │   ├── system_stm32f10x.crf
│   │   │   ├── system_stm32f10x.d
│   │   │   └── system_stm32f10x.o
│   │   └── SRE
│   │   ├── lcd.c
│   │   ├── main.c
│   │   └── stm32f10x_it.c
│   ├── 9.TIM_Base
│   │   ├── INC
│   │   │   ├── fonts.H
│   │   │   ├── lcd.h
│   │   │   ├── led.h
│   │   │   ├── stm32f10x_conf.h
│   │   │   └── stm32f10x_it.h
│   │   ├── MDK
│   │   │   ├── TIM.uvopt
│   │   │   ├── TIM_Base.map
│   │   │   ├── TIM_Base.uvgui.Administrator
│   │   │   ├── TIM_Base.uvopt
│   │   │   ├── TIM_Base.uvproj
│   │   │   ├── TIM_Base_Target 1.dep
│   │   │   ├── TIM_Target 1.dep
│   │   │   └── startup_stm32f10x_md.lst
│   │   ├── OUTPUT
│   │   │   ├── TIM_Base.axf
│   │   │   ├── TIM_Base.hex
│   │   │   ├── TIM_Base.htm
│   │   │   ├── TIM_Base.lnp
│   │   │   ├── TIM_Base.plg
│   │   │   ├── core_cm3.crf
│   │   │   ├── core_cm3.d
│   │   │   ├── core_cm3.o
│   │   │   ├── lcd.crf
│   │   │   ├── lcd.d
│   │   │   ├── lcd.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── misc.crf
│   │   │   ├── misc.d
│   │   │   ├── misc.o
│   │   │   ├── startup_stm32f10x_md.d
│   │   │   ├── startup_stm32f10x_md.o
│   │   │   ├── stm32f10x_gpio.crf
│   │   │   ├── stm32f10x_gpio.d
│   │   │   ├── stm32f10x_gpio.o
│   │   │   ├── stm32f10x_it.crf
│   │   │   ├── stm32f10x_it.d
│   │   │   ├── stm32f10x_it.o
│   │   │   ├── stm32f10x_rcc.crf
│   │   │   ├── stm32f10x_rcc.d
│   │   │   ├── stm32f10x_rcc.o
│   │   │   ├── stm32f10x_tim.crf
│   │   │   ├── stm32f10x_tim.d
│   │   │   ├── stm32f10x_tim.o
│   │   │   ├── system_stm32f10x.crf
│   │   │   ├── system_stm32f10x.d
│   │   │   └── system_stm32f10x.o
│   │   └── SRE
│   │   ├── lcd.c
│   │   ├── led.c
│   │   ├── main.c
│   │   └── stm32f10x_it.c
│   └── Libraries
│   ├── CMSIS
│   │   ├── CM3
│   │   │   ├── CoreSupport
│   │   │   │   ├── core_cm3.c
│   │   │   │   └── core_cm3.h
│   │   │   └── DeviceSupport
│   │   │   └── ST
│   │   │   └── STM32F10x
│   │   │   ├── Release_Notes.html_temp
│   │   │   ├── startup
│   │   │   │   ├── TrueSTUDIO
│   │   │   │   │   ├── startup_stm32f10x_cl.s
│   │   │   │   │   ├── startup_stm32f10x_hd.s
│   │   │   │   │   ├── startup_stm32f10x_hd_vl.s
│   │   │   │   │   ├── startup_stm32f10x_ld.s
│   │   │   │   │   ├── startup_stm32f10x_ld_vl.s
│   │   │   │   │   ├── startup_stm32f10x_md.s
│   │   │   │   │   ├── startup_stm32f10x_md_vl.s
│   │   │   │   │   └── startup_stm32f10x_xl.s
│   │   │   │   ├── arm
│   │   │   │   │   ├── startup_stm32f10x_cl.s
│   │   │   │   │   ├── startup_stm32f10x_hd.s
│   │   │   │   │   ├── startup_stm32f10x_hd_vl.s
│   │   │   │   │   ├── startup_stm32f10x_ld.s
│   │   │   │   │   ├── startup_stm32f10x_ld_vl.s
│   │   │   │   │   ├── startup_stm32f10x_md.s
│   │   │   │   │   ├── startup_stm32f10x_md_vl.s
│   │   │   │   │   └── startup_stm32f10x_xl.s
│   │   │   │   ├── gcc_ride7
│   │   │   │   │   ├── startup_stm32f10x_cl.s
│   │   │   │   │   ├── startup_stm32f10x_hd.s
│   │   │   │   │   ├── startup_stm32f10x_hd_vl.s
│   │   │   │   │   ├── startup_stm32f10x_ld.s
│   │   │   │   │   ├── startup_stm32f10x_ld_vl.s
│   │   │   │   │   ├── startup_stm32f10x_md.s
│   │   │   │   │   ├── startup_stm32f10x_md_vl.s
│   │   │   │   │   └── startup_stm32f10x_xl.s
│   │   │   │   └── iar
│   │   │   │   ├── startup_stm32f10x_cl.s
│   │   │   │   ├── startup_stm32f10x_hd.s
│   │   │   │   ├── startup_stm32f10x_hd_vl.s
│   │   │   │   ├── startup_stm32f10x_ld.s
│   │   │   │   ├── startup_stm32f10x_ld_vl.s
│   │   │   │   ├── startup_stm32f10x_md.s
│   │   │   │   ├── startup_stm32f10x_md_vl.s
│   │   │   │   └── startup_stm32f10x_xl.s
│   │   │   ├── stm32f10x.h
│   │   │   ├── system_stm32f10x.c
│   │   │   └── system_stm32f10x.h
│   │   ├── CMSIS debug support.htm
│   │   ├── CMSIS_changes.htm
│   │   ├── Documentation
│   │   │   └── CMSIS_Core.htm
│   │   └── License.doc
│   └── STM32F10x_StdPeriph_Driver
│   ├── Release_Notes.html_temp
│   ├── inc
│   │   ├── misc.h
│   │   ├── stm32f10x_adc.h
│   │   ├── stm32f10x_bkp.h
│   │   ├── stm32f10x_can.h
│   │   ├── stm32f10x_cec.h
│   │   ├── stm32f10x_crc.h
│   │   ├── stm32f10x_dac.h
│   │   ├── stm32f10x_dbgmcu.h
│   │   ├── stm32f10x_dma.h
│   │   ├── stm32f10x_exti.h
│   │   ├── stm32f10x_flash.h
│   │   ├── stm32f10x_fsmc.h
│   │   ├── stm32f10x_gpio.h
│   │   ├── stm32f10x_i2c.h
│   │   ├── stm32f10x_iwdg.h
│   │   ├── stm32f10x_pwr.h
│   │   ├── stm32f10x_rcc.h
│   │   ├── stm32f10x_rtc.h
│   │   ├── stm32f10x_sdio.h
│   │   ├── stm32f10x_spi.h
│   │   ├── stm32f10x_tim.h
│   │   ├── stm32f10x_usart.h
│   │   └── stm32f10x_wwdg.h
│   └── src
│   ├── misc.c
│   ├── stm32f10x_adc.c
│   ├── stm32f10x_bkp.c
│   ├── stm32f10x_can.c
│   ├── stm32f10x_cec.c
│   ├── stm32f10x_crc.c
│   ├── stm32f10x_dac.c
│   ├── stm32f10x_dbgmcu.c
│   ├── stm32f10x_dma.c
│   ├── stm32f10x_exti.c
│   ├── stm32f10x_flash.c
│   ├── stm32f10x_fsmc.c
│   ├── stm32f10x_gpio.c
│   ├── stm32f10x_i2c.c
│   ├── stm32f10x_iwdg.c
│   ├── stm32f10x_pwr.c
│   ├── stm32f10x_rcc.c
│   ├── stm32f10x_rtc.c
│   ├── stm32f10x_sdio.c
│   ├── stm32f10x_spi.c
│   ├── stm32f10x_tim.c
│   ├── stm32f10x_usart.c
│   └── stm32f10x_wwdg.c
├── Examples.rar
├── stm32-lib[rain].rar
├── stm32-v3.5.rar
├── stm32f10x_stdperiph_lib_um.chm
├── 嵌入式竞赛模拟题程序
│   └── 嵌入式竞赛模拟题程序
│   ├── CMSIS
│   │   ├── core_cm3.c
│   │   ├── core_cm3.h
│   │   ├── startup
│   │   │   ├── startup_stm32f10x_cl.s
│   │   │   ├── startup_stm32f10x_hd.s
│   │   │   ├── startup_stm32f10x_hd_vl.s
│   │   │   ├── startup_stm32f10x_ld.s
│   │   │   ├── startup_stm32f10x_ld_vl.s
│   │   │   ├── startup_stm32f10x_md.s
│   │   │   ├── startup_stm32f10x_md_vl.s
│   │   │   └── startup_stm32f10x_xl.s
│   │   ├── stm32f10x.h
│   │   ├── system_stm32f10x.c
│   │   └── system_stm32f10x.h
│   ├── debug
│   │   ├── app.crf
│   │   ├── app.d
│   │   ├── app.o
│   │   ├── core_cm3.crf
│   │   ├── core_cm3.d
│   │   ├── core_cm3.o
│   │   ├── eeprom.crf
│   │   ├── eeprom.d
│   │   ├── eeprom.o
│   │   ├── main.crf
│   │   ├── main.d
│   │   ├── main.o
│   │   ├── misc.crf
│   │   ├── misc.d
│   │   ├── misc.o
│   │   ├── startup_stm32f10x_md.d
│   │   ├── startup_stm32f10x_md.o
│   │   ├── stm32.axf
│   │   ├── stm32.build_log.htm
│   │   ├── stm32.hex
│   │   ├── stm32.htm
│   │   ├── stm32.lnp
│   │   ├── stm32.plg
│   │   ├── stm32.sct
│   │   ├── stm32_i2c.crf
│   │   ├── stm32_i2c.d
│   │   ├── stm32_i2c.o
│   │   ├── stm32_key.crf
│   │   ├── stm32_key.d
│   │   ├── stm32_key.o
│   │   ├── stm32_lcd.crf
│   │   ├── stm32_lcd.d
│   │   ├── stm32_lcd.o
│   │   ├── stm32_led.crf
│   │   ├── stm32_led.d
│   │   ├── stm32_led.o
│   │   ├── stm32_pwm.crf
│   │   ├── stm32_pwm.d
│   │   ├── stm32_pwm.o
│   │   ├── stm32_rtc.crf
│   │   ├── stm32_rtc.d
│   │   ├── stm32_rtc.o
│   │   ├── stm32_spi.crf
│   │   ├── stm32_spi.d
│   │   ├── stm32_spi.o
│   │   ├── stm32_system.crf
│   │   ├── stm32_system.d
│   │   ├── stm32_system.o
│   │   ├── stm32_usart.crf
│   │   ├── stm32_usart.d
│   │   ├── stm32_usart.o
│   │   ├── stm32_usart2.crf
│   │   ├── stm32_usart2.d
│   │   ├── stm32_usart2.o
│   │   ├── stm32f10x_adc.crf
│   │   ├── stm32f10x_adc.d
│   │   ├── stm32f10x_adc.o
│   │   ├── stm32f10x_bkp.crf
│   │   ├── stm32f10x_bkp.d
│   │   ├── stm32f10x_bkp.o
│   │   ├── stm32f10x_can.crf
│   │   ├── stm32f10x_can.d
│   │   ├── stm32f10x_can.o
│   │   ├── stm32f10x_cec.crf
│   │   ├── stm32f10x_cec.d
│   │   ├── stm32f10x_cec.o
│   │   ├── stm32f10x_crc.crf
│   │   ├── stm32f10x_crc.d
│   │   ├── stm32f10x_crc.o
│   │   ├── stm32f10x_dac.crf
│   │   ├── stm32f10x_dac.d
│   │   ├── stm32f10x_dac.o
│   │   ├── stm32f10x_dbgmcu.crf
│   │   ├── stm32f10x_dbgmcu.d
│   │   ├── stm32f10x_dbgmcu.o
│   │   ├── stm32f10x_dma.crf
│   │   ├── stm32f10x_dma.d
│   │   ├── stm32f10x_dma.o
│   │   ├── stm32f10x_exti.crf
│   │   ├── stm32f10x_exti.d
│   │   ├── stm32f10x_exti.o
│   │   ├── stm32f10x_flash.crf
│   │   ├── stm32f10x_flash.d
│   │   ├── stm32f10x_flash.o
│   │   ├── stm32f10x_fsmc.crf
│   │   ├── stm32f10x_fsmc.d
│   │   ├── stm32f10x_fsmc.o
│   │   ├── stm32f10x_gpio.crf
│   │   ├── stm32f10x_gpio.d
│   │   ├── stm32f10x_gpio.o
│   │   ├── stm32f10x_i2c.crf
│   │   ├── stm32f10x_i2c.d
│   │   ├── stm32f10x_i2c.o
│   │   ├── stm32f10x_it.crf
│   │   ├── stm32f10x_it.d
│   │   ├── stm32f10x_it.o
│   │   ├── stm32f10x_iwdg.crf
│   │   ├── stm32f10x_iwdg.d
│   │   ├── stm32f10x_iwdg.o
│   │   ├── stm32f10x_pwr.crf
│   │   ├── stm32f10x_pwr.d
│   │   ├── stm32f10x_pwr.o
│   │   ├── stm32f10x_rcc.crf
│   │   ├── stm32f10x_rcc.d
│   │   ├── stm32f10x_rcc.o
│   │   ├── stm32f10x_rtc.crf
│   │   ├── stm32f10x_rtc.d
│   │   ├── stm32f10x_rtc.o
│   │   ├── stm32f10x_sdio.crf
│   │   ├── stm32f10x_sdio.d
│   │   ├── stm32f10x_sdio.o
│   │   ├── stm32f10x_spi.crf
│   │   ├── stm32f10x_spi.d
│   │   ├── stm32f10x_spi.o
│   │   ├── stm32f10x_tim.crf
│   │   ├── stm32f10x_tim.d
│   │   ├── stm32f10x_tim.o
│   │   ├── stm32f10x_usart.crf
│   │   ├── stm32f10x_usart.d
│   │   ├── stm32f10x_usart.o
│   │   ├── stm32f10x_wwdg.crf
│   │   ├── stm32f10x_wwdg.d
│   │   ├── stm32f10x_wwdg.o
│   │   ├── system_stm32f10x.crf
│   │   ├── system_stm32f10x.d
│   │   └── system_stm32f10x.o
│   ├── lib
│   │   ├── inc
│   │   │   ├── misc.h
│   │   │   ├── stm32f10x_adc.h
│   │   │   ├── stm32f10x_bkp.h
│   │   │   ├── stm32f10x_can.h
│   │   │   ├── stm32f10x_cec.h
│   │   │   ├── stm32f10x_crc.h
│   │   │   ├── stm32f10x_dac.h
│   │   │   ├── stm32f10x_dbgmcu.h
│   │   │   ├── stm32f10x_dma.h
│   │   │   ├── stm32f10x_exti.h
│   │   │   ├── stm32f10x_flash.h
│   │   │   ├── stm32f10x_fsmc.h
│   │   │   ├── stm32f10x_gpio.h
│   │   │   ├── stm32f10x_i2c.h
│   │   │   ├── stm32f10x_iwdg.h
│   │   │   ├── stm32f10x_pwr.h
│   │   │   ├── stm32f10x_rcc.h
│   │   │   ├── stm32f10x_rtc.h
│   │   │   ├── stm32f10x_sdio.h
│   │   │   ├── stm32f10x_spi.h
│   │   │   ├── stm32f10x_tim.h
│   │   │   ├── stm32f10x_usart.h
│   │   │   └── stm32f10x_wwdg.h
│   │   └── src
│   │   ├── misc.c
│   │   ├── stm32f10x_adc.c
│   │   ├── stm32f10x_bkp.c
│   │   ├── stm32f10x_can.c
│   │   ├── stm32f10x_cec.c
│   │   ├── stm32f10x_crc.c
│   │   ├── stm32f10x_dac.c
│   │   ├── stm32f10x_dbgmcu.c
│   │   ├── stm32f10x_dma.c
│   │   ├── stm32f10x_exti.c
│   │   ├── stm32f10x_flash.c
│   │   ├── stm32f10x_fsmc.c
│   │   ├── stm32f10x_gpio.c
│   │   ├── stm32f10x_i2c.c
│   │   ├── stm32f10x_iwdg.c
│   │   ├── stm32f10x_pwr.c
│   │   ├── stm32f10x_rcc.c
│   │   ├── stm32f10x_rtc.c
│   │   ├── stm32f10x_sdio.c
│   │   ├── stm32f10x_spi.c
│   │   ├── stm32f10x_tim.c
│   │   ├── stm32f10x_usart.c
│   │   └── stm32f10x_wwdg.c
│   ├── mylib
│   │   ├── app.c
│   │   ├── app.h
│   │   ├── eeprom.c
│   │   ├── eeprom.h
│   │   ├── fonts.h
│   │   ├── stm32_i2c.c
│   │   ├── stm32_i2c.h
│   │   ├── stm32_key.c
│   │   ├── stm32_key.h
│   │   ├── stm32_lcd.c
│   │   ├── stm32_lcd.h
│   │   ├── stm32_led.c
│   │   ├── stm32_led.h
│   │   ├── stm32_pwm.c
│   │   ├── stm32_pwm.h
│   │   ├── stm32_rtc.c
│   │   ├── stm32_rtc.h
│   │   ├── stm32_spi.c
│   │   ├── stm32_spi.h
│   │   ├── stm32_system.c
│   │   ├── stm32_system.h
│   │   ├── stm32_usart.c
│   │   ├── stm32_usart.h
│   │   ├── stm32_usart2.c
│   │   └── stm32_usart2.h
│   └── obj
│   ├── main.c
│   ├── startup_stm32f10x_md.lst
│   ├── stm32.map
│   ├── stm32.plg
│   ├── stm32.uvgui.Administrator
│   ├── stm32.uvgui.hanlinson
│   ├── stm32.uvgui_Administrator.bak
│   ├── stm32.uvgui_hanlinson.bak
│   ├── stm32.uvopt
│   ├── stm32.uvproj
│   ├── stm32_Target 1.dep
│   ├── stm32_stm32.dep
│   ├── stm32f10x_conf.h
│   ├── stm32f10x_it.c
│   └── stm32f10x_it.h
├── 嵌入式竞赛模拟题程序.rar
└── 嵌入式设计与开发模拟试卷-2013.pdf

99 directories, 911 files

标签:

实例下载地址

CT117E蓝嵌入式资源,各个模块代码,文档,模拟题例子程序

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警