在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例嵌入式开发 → STM32F030最小系统资料包

STM32F030最小系统资料包

嵌入式开发

下载此实例
  • 开发语言:C/C++
  • 实例大小:369.13M
  • 下载次数:26
  • 浏览次数:119
  • 发布时间:2022-09-07
  • 实例类别:嵌入式开发
  • 发 布 人:stmwwwe
  • 文件格式:.zip
  • 所需积分:2
 相关标签: STM32F030 STM32 STM3 stm 32

实例介绍

【实例简介】STM32F030最小系统资料包

【实例截图】

from clipboard

【核心代码】

.
├── STM32F030最小系统资料包
│   ├── 1.开发环境及其破解工具
│   │   ├── Keil.STM32F0xx_DFP.1.2.0.pack
│   │   ├── MDK511
│   │   │   ├── keygen.exe
│   │   │   ├── mdk511.exe
│   │   │   ├── 西西软件园.txt
│   │   │   └── 西西软件园.url
│   │   └── 开发说明.txt
│   ├── 2.原理图
│   │   └── STM32F030F4P6最小系统原理图.pdf
│   ├── 3.出厂测试程序
│   │   └── LED-PA4
│   │       ├── My_Lib
│   │       │   ├── LED
│   │       │   │   ├── led.c
│   │       │   │   └── led.h
│   │       │   └── delay
│   │       │       ├── delay.c
│   │       │       └── delay.h
│   │       ├── Proj
│   │       │   ├── ExtDll.iex
│   │       │   ├── LED.axf
│   │       │   ├── LED.build_log.htm
│   │       │   ├── LED.hex
│   │       │   ├── LED.htm
│   │       │   ├── LED.lnp
│   │       │   ├── LED.map
│   │       │   ├── LED.plg
│   │       │   ├── LED.sct
│   │       │   ├── LED.tra
│   │       │   ├── LED.uvgui.Administrator
│   │       │   ├── LED.uvgui.vm-twd
│   │       │   ├── LED.uvgui.yong
│   │       │   ├── LED.uvgui_Administrator.bak
│   │       │   ├── LED.uvgui_vm-twd.bak
│   │       │   ├── LED.uvgui_yong.bak
│   │       │   ├── LED.uvopt
│   │       │   ├── LED.uvproj
│   │       │   ├── LED_Target 1.dep
│   │       │   ├── LED_uvopt.bak
│   │       │   ├── LED_uvproj.bak
│   │       │   ├── delay.crf
│   │       │   ├── delay.d
│   │       │   ├── delay.o
│   │       │   ├── led.crf
│   │       │   ├── led.d
│   │       │   ├── led.o
│   │       │   ├── main.crf
│   │       │   ├── main.d
│   │       │   ├── main.o
│   │       │   ├── startup_stm32f030x6.d
│   │       │   ├── startup_stm32f030x6.lst
│   │       │   ├── startup_stm32f030x6.o
│   │       │   ├── startup_stm32f030x8.d
│   │       │   ├── startup_stm32f030x8.lst
│   │       │   ├── startup_stm32f030x8.o
│   │       │   ├── startup_stm32f0xx.d
│   │       │   ├── startup_stm32f0xx.lst
│   │       │   ├── startup_stm32f0xx.o
│   │       │   ├── startup_stm32f0xx_ld.d
│   │       │   ├── startup_stm32f0xx_ld.lst
│   │       │   ├── startup_stm32f0xx_ld.o
│   │       │   ├── stm32f0xx_gpio.crf
│   │       │   ├── stm32f0xx_gpio.d
│   │       │   ├── stm32f0xx_gpio.o
│   │       │   ├── stm32f0xx_rcc.crf
│   │       │   ├── stm32f0xx_rcc.d
│   │       │   ├── stm32f0xx_rcc.o
│   │       │   ├── system_stm32f0xx.crf
│   │       │   ├── system_stm32f0xx.d
│   │       │   └── system_stm32f0xx.o
│   │       ├── ST_Lib
│   │       │   ├── inc
│   │       │   │   ├── stm32f0xx_adc.h
│   │       │   │   ├── stm32f0xx_cec.h
│   │       │   │   ├── stm32f0xx_comp.h
│   │       │   │   ├── stm32f0xx_crc.h
│   │       │   │   ├── stm32f0xx_dac.h
│   │       │   │   ├── stm32f0xx_dbgmcu.h
│   │       │   │   ├── stm32f0xx_dma.h
│   │       │   │   ├── stm32f0xx_exti.h
│   │       │   │   ├── stm32f0xx_flash.h
│   │       │   │   ├── stm32f0xx_gpio.h
│   │       │   │   ├── stm32f0xx_i2c.h
│   │       │   │   ├── stm32f0xx_iwdg.h
│   │       │   │   ├── stm32f0xx_misc.h
│   │       │   │   ├── stm32f0xx_pwr.h
│   │       │   │   ├── stm32f0xx_rcc.h
│   │       │   │   ├── stm32f0xx_rtc.h
│   │       │   │   ├── stm32f0xx_spi.h
│   │       │   │   ├── stm32f0xx_syscfg.h
│   │       │   │   ├── stm32f0xx_tim.h
│   │       │   │   ├── stm32f0xx_usart.h
│   │       │   │   └── stm32f0xx_wwdg.h
│   │       │   └── src
│   │       │       ├── stm32f0xx_adc.c
│   │       │       ├── stm32f0xx_cec.c
│   │       │       ├── stm32f0xx_comp.c
│   │       │       ├── stm32f0xx_crc.c
│   │       │       ├── stm32f0xx_dac.c
│   │       │       ├── stm32f0xx_dbgmcu.c
│   │       │       ├── stm32f0xx_dma.c
│   │       │       ├── stm32f0xx_exti.c
│   │       │       ├── stm32f0xx_flash.c
│   │       │       ├── stm32f0xx_gpio.c
│   │       │       ├── stm32f0xx_i2c.c
│   │       │       ├── stm32f0xx_iwdg.c
│   │       │       ├── stm32f0xx_misc.c
│   │       │       ├── stm32f0xx_pwr.c
│   │       │       ├── stm32f0xx_rcc.c
│   │       │       ├── stm32f0xx_rtc.c
│   │       │       ├── stm32f0xx_spi.c
│   │       │       ├── stm32f0xx_syscfg.c
│   │       │       ├── stm32f0xx_tim.c
│   │       │       ├── stm32f0xx_usart.c
│   │       │       └── stm32f0xx_wwdg.c
│   │       ├── System
│   │       │   ├── CMSIS
│   │       │   │   ├── core_cm0.h
│   │       │   │   ├── core_cm0plus.h
│   │       │   │   ├── stm32f0xx.h
│   │       │   │   ├── stm32f0xx_conf.h
│   │       │   │   ├── system_stm32f0xx.c
│   │       │   │   └── system_stm32f0xx.h
│   │       │   └── startup
│   │       │       ├── startup_stm32f030x6.s
│   │       │       ├── startup_stm32f030x8.s
│   │       │       ├── startup_stm32f0xx.s
│   │       │       └── startup_stm32f0xx_ld.s
│   │       └── User
│   │           ├── ALL_Includes.h
│   │           ├── MyType.h
│   │           └── main.c
│   ├── 4.芯片相关手册资料
│   │   ├── STM32F030x8x4x6寄存器手册.pdf
│   │   ├── STM32F031XX.pdf
│   │   ├── STM8和STM32产品选型手册2013.10.pdf
│   │   ├── stm32f030手册.pdf
│   │   ├── stm32f030数据手册.pdf
│   │   ├── stm32f030的相关参考手册.zip
│   │   ├── 使用STM32F0xx系列微控制器的DAC模块实现音频和生产波形应用.pdf
│   │   ├── 使用STM32F0xx系列微控制器的DMA控制器.pdf
│   │   └── 使用STM32F0xx系列微控制器模拟EEPROM.pdf
│   ├── 5.例程
│   │   ├── 1.出厂程序
│   │   │   ├── LED-PA4
│   │   │   │   ├── My_Lib
│   │   │   │   │   ├── LED
│   │   │   │   │   │   ├── led.c
│   │   │   │   │   │   └── led.h
│   │   │   │   │   └── delay
│   │   │   │   │       ├── delay.c
│   │   │   │   │       └── delay.h
│   │   │   │   ├── Proj
│   │   │   │   │   ├── ExtDll.iex
│   │   │   │   │   ├── JLinkLog.txt
│   │   │   │   │   ├── JLinkSettings.ini
│   │   │   │   │   ├── LED.axf
│   │   │   │   │   ├── LED.build_log.htm
│   │   │   │   │   ├── LED.htm
│   │   │   │   │   ├── LED.lnp
│   │   │   │   │   ├── LED.map
│   │   │   │   │   ├── LED.plg
│   │   │   │   │   ├── LED.sct
│   │   │   │   │   ├── LED.tra
│   │   │   │   │   ├── LED.uvgui.Administrator
│   │   │   │   │   ├── LED.uvgui.vm-twd
│   │   │   │   │   ├── LED.uvgui_Administrator.bak
│   │   │   │   │   ├── LED.uvgui_vm-twd.bak
│   │   │   │   │   ├── LED.uvopt
│   │   │   │   │   ├── LED.uvproj
│   │   │   │   │   ├── LED_Target 1.dep
│   │   │   │   │   ├── LED_uvopt.bak
│   │   │   │   │   ├── LED_uvproj.bak
│   │   │   │   │   ├── delay.crf
│   │   │   │   │   ├── delay.d
│   │   │   │   │   ├── delay.o
│   │   │   │   │   ├── led.crf
│   │   │   │   │   ├── led.d
│   │   │   │   │   ├── led.o
│   │   │   │   │   ├── main.crf
│   │   │   │   │   ├── main.d
│   │   │   │   │   ├── main.o
│   │   │   │   │   ├── startup_stm32f030x6.d
│   │   │   │   │   ├── startup_stm32f030x6.lst
│   │   │   │   │   ├── startup_stm32f030x6.o
│   │   │   │   │   ├── startup_stm32f030x8.d
│   │   │   │   │   ├── startup_stm32f030x8.lst
│   │   │   │   │   ├── startup_stm32f030x8.o
│   │   │   │   │   ├── startup_stm32f0xx.d
│   │   │   │   │   ├── startup_stm32f0xx.lst
│   │   │   │   │   ├── startup_stm32f0xx.o
│   │   │   │   │   ├── startup_stm32f0xx_ld.d
│   │   │   │   │   ├── startup_stm32f0xx_ld.lst
│   │   │   │   │   ├── startup_stm32f0xx_ld.o
│   │   │   │   │   ├── stm32f0xx_gpio.crf
│   │   │   │   │   ├── stm32f0xx_gpio.d
│   │   │   │   │   ├── stm32f0xx_gpio.o
│   │   │   │   │   ├── stm32f0xx_rcc.crf
│   │   │   │   │   ├── stm32f0xx_rcc.d
│   │   │   │   │   ├── stm32f0xx_rcc.o
│   │   │   │   │   ├── system_stm32f0xx.crf
│   │   │   │   │   ├── system_stm32f0xx.d
│   │   │   │   │   └── system_stm32f0xx.o
│   │   │   │   ├── ST_Lib
│   │   │   │   │   ├── inc
│   │   │   │   │   │   ├── stm32f0xx_adc.h
│   │   │   │   │   │   ├── stm32f0xx_cec.h
│   │   │   │   │   │   ├── stm32f0xx_comp.h
│   │   │   │   │   │   ├── stm32f0xx_crc.h
│   │   │   │   │   │   ├── stm32f0xx_dac.h
│   │   │   │   │   │   ├── stm32f0xx_dbgmcu.h
│   │   │   │   │   │   ├── stm32f0xx_dma.h
│   │   │   │   │   │   ├── stm32f0xx_exti.h
│   │   │   │   │   │   ├── stm32f0xx_flash.h
│   │   │   │   │   │   ├── stm32f0xx_gpio.h
│   │   │   │   │   │   ├── stm32f0xx_i2c.h
│   │   │   │   │   │   ├── stm32f0xx_iwdg.h
│   │   │   │   │   │   ├── stm32f0xx_misc.h
│   │   │   │   │   │   ├── stm32f0xx_pwr.h
│   │   │   │   │   │   ├── stm32f0xx_rcc.h
│   │   │   │   │   │   ├── stm32f0xx_rtc.h
│   │   │   │   │   │   ├── stm32f0xx_spi.h
│   │   │   │   │   │   ├── stm32f0xx_syscfg.h
│   │   │   │   │   │   ├── stm32f0xx_tim.h
│   │   │   │   │   │   ├── stm32f0xx_usart.h
│   │   │   │   │   │   └── stm32f0xx_wwdg.h
│   │   │   │   │   └── src
│   │   │   │   │       ├── stm32f0xx_adc.c
│   │   │   │   │       ├── stm32f0xx_cec.c
│   │   │   │   │       ├── stm32f0xx_comp.c
│   │   │   │   │       ├── stm32f0xx_crc.c
│   │   │   │   │       ├── stm32f0xx_dac.c
│   │   │   │   │       ├── stm32f0xx_dbgmcu.c
│   │   │   │   │       ├── stm32f0xx_dma.c
│   │   │   │   │       ├── stm32f0xx_exti.c
│   │   │   │   │       ├── stm32f0xx_flash.c
│   │   │   │   │       ├── stm32f0xx_gpio.c
│   │   │   │   │       ├── stm32f0xx_i2c.c
│   │   │   │   │       ├── stm32f0xx_iwdg.c
│   │   │   │   │       ├── stm32f0xx_misc.c
│   │   │   │   │       ├── stm32f0xx_pwr.c
│   │   │   │   │       ├── stm32f0xx_rcc.c
│   │   │   │   │       ├── stm32f0xx_rtc.c
│   │   │   │   │       ├── stm32f0xx_spi.c
│   │   │   │   │       ├── stm32f0xx_syscfg.c
│   │   │   │   │       ├── stm32f0xx_tim.c
│   │   │   │   │       ├── stm32f0xx_usart.c
│   │   │   │   │       └── stm32f0xx_wwdg.c
│   │   │   │   ├── System
│   │   │   │   │   ├── CMSIS
│   │   │   │   │   │   ├── core_cm0.h
│   │   │   │   │   │   ├── core_cm0plus.h
│   │   │   │   │   │   ├── stm32f0xx.h
│   │   │   │   │   │   ├── stm32f0xx_conf.h
│   │   │   │   │   │   ├── system_stm32f0xx.c
│   │   │   │   │   │   └── system_stm32f0xx.h
│   │   │   │   │   └── startup
│   │   │   │   │       ├── startup_stm32f030x6.s
│   │   │   │   │       ├── startup_stm32f030x8.s
│   │   │   │   │       ├── startup_stm32f0xx.s
│   │   │   │   │       └── startup_stm32f0xx_ld.s
│   │   │   │   └── User
│   │   │   │       ├── ALL_Includes.h
│   │   │   │       ├── MyType.h
│   │   │   │       └── main.c
│   │   │   └── LED-PA4.rar
│   │   ├── Arduino_LED
│   │   │   ├── Arduino_App
│   │   │   │   ├── loop.c
│   │   │   │   ├── loop.h
│   │   │   │   ├── setup.c
│   │   │   │   ├── setup.h
│   │   │   │   ├── utilities.c
│   │   │   │   └── utilities.h
│   │   │   ├── Project
│   │   │   │   ├── Project.uvgui.wuguoyan
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── Project_Project.dep
│   │   │   └── User
│   │   │       ├── main.c
│   │   │       ├── main.h
│   │   │       ├── stm32f0xx_conf.h
│   │   │       ├── stm32f0xx_it.c
│   │   │       ├── stm32f0xx_it.h
│   │   │       └── system_stm32f0xx.c
│   │   ├── CooCox
│   │   │   ├── CoOS
│   │   │   │   ├── Document
│   │   │   │   │   ├── CooCox CoOS's TERMS AND CONDITIONS.pdf
│   │   │   │   │   ├── CooCox_CoOS_User_Guide.pdf
│   │   │   │   │   └── readme.txt
│   │   │   │   ├── Other
│   │   │   │   │   └── OsConfig.h
│   │   │   │   ├── kernel
│   │   │   │   │   ├── CoOS.h
│   │   │   │   │   ├── OsConfig.h
│   │   │   │   │   ├── OsCore.h
│   │   │   │   │   ├── OsError.h
│   │   │   │   │   ├── OsEvent.h
│   │   │   │   │   ├── OsFlag.h
│   │   │   │   │   ├── OsKernelHeap.h
│   │   │   │   │   ├── OsMM.h
│   │   │   │   │   ├── OsMutex.h
│   │   │   │   │   ├── OsQueue.h
│   │   │   │   │   ├── OsServiceReq.h
│   │   │   │   │   ├── OsTask.h
│   │   │   │   │   ├── OsTime.h
│   │   │   │   │   ├── OsTimer.h
│   │   │   │   │   ├── coocox.h
│   │   │   │   │   ├── core.c
│   │   │   │   │   ├── event.c
│   │   │   │   │   ├── flag.c
│   │   │   │   │   ├── hook.c
│   │   │   │   │   ├── kernelHeap.c
│   │   │   │   │   ├── mbox.c
│   │   │   │   │   ├── mm.c
│   │   │   │   │   ├── mutex.c
│   │   │   │   │   ├── queue.c
│   │   │   │   │   ├── sem.c
│   │   │   │   │   ├── serviceReq.c
│   │   │   │   │   ├── task.c
│   │   │   │   │   ├── time.c
│   │   │   │   │   ├── timer.c
│   │   │   │   │   ├── utility.c
│   │   │   │   │   └── utility.h
│   │   │   │   ├── portable
│   │   │   │   │   ├── GCC
│   │   │   │   │   │   └── port.c
│   │   │   │   │   ├── IAR
│   │   │   │   │   │   ├── portForM0.asm
│   │   │   │   │   │   └── portForM3.asm
│   │   │   │   │   ├── Keil
│   │   │   │   │   │   └── port.c
│   │   │   │   │   ├── OsArch.h
│   │   │   │   │   └── arch.c
│   │   │   │   └── readme for m0.txt
│   │   │   ├── Project
│   │   │   │   ├── Project.uvgui.wuguoyan
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── Project_Project.dep
│   │   │   └── User
│   │   │       ├── main.c
│   │   │       ├── stm32f0xx_conf.h
│   │   │       ├── stm32f0xx_it.c
│   │   │       ├── stm32f0xx_it.h
│   │   │       └── system_stm32f0xx.c
│   │   ├── F030_FreeRTOS_LED.rar
│   │   ├── LED-PA4-UART
│   │   │   ├── My_Lib
│   │   │   │   ├── LED
│   │   │   │   │   ├── led.c
│   │   │   │   │   └── led.h
│   │   │   │   └── delay
│   │   │   │       ├── delay.c
│   │   │   │       └── delay.h
│   │   │   ├── Proj
│   │   │   │   ├── ExtDll.iex
│   │   │   │   ├── JLinkLog.txt
│   │   │   │   ├── JLinkSettings.ini
│   │   │   │   ├── LED.axf
│   │   │   │   ├── LED.build_log.htm
│   │   │   │   ├── LED.htm
│   │   │   │   ├── LED.lnp
│   │   │   │   ├── LED.map
│   │   │   │   ├── LED.plg
│   │   │   │   ├── LED.sct
│   │   │   │   ├── LED.tra
│   │   │   │   ├── LED.uvgui.Administrator
│   │   │   │   ├── LED.uvgui.vm-twd
│   │   │   │   ├── LED.uvgui_Administrator.bak
│   │   │   │   ├── LED.uvgui_vm-twd.bak
│   │   │   │   ├── LED.uvopt
│   │   │   │   ├── LED.uvproj
│   │   │   │   ├── LED_Target 1.dep
│   │   │   │   ├── LED_uvopt.bak
│   │   │   │   ├── LED_uvproj.bak
│   │   │   │   ├── delay.crf
│   │   │   │   ├── delay.d
│   │   │   │   ├── delay.o
│   │   │   │   ├── led.crf
│   │   │   │   ├── led.d
│   │   │   │   ├── led.o
│   │   │   │   ├── main.crf
│   │   │   │   ├── main.d
│   │   │   │   ├── main.o
│   │   │   │   ├── startup_stm32f030x6.d
│   │   │   │   ├── startup_stm32f030x6.lst
│   │   │   │   ├── startup_stm32f030x6.o
│   │   │   │   ├── startup_stm32f030x8.d
│   │   │   │   ├── startup_stm32f030x8.lst
│   │   │   │   ├── startup_stm32f030x8.o
│   │   │   │   ├── startup_stm32f0xx.d
│   │   │   │   ├── startup_stm32f0xx.lst
│   │   │   │   ├── startup_stm32f0xx.o
│   │   │   │   ├── startup_stm32f0xx_ld.d
│   │   │   │   ├── startup_stm32f0xx_ld.lst
│   │   │   │   ├── startup_stm32f0xx_ld.o
│   │   │   │   ├── stm32f0xx_gpio.crf
│   │   │   │   ├── stm32f0xx_gpio.d
│   │   │   │   ├── stm32f0xx_gpio.o
│   │   │   │   ├── stm32f0xx_rcc.crf
│   │   │   │   ├── stm32f0xx_rcc.d
│   │   │   │   ├── stm32f0xx_rcc.o
│   │   │   │   ├── system_stm32f0xx.crf
│   │   │   │   ├── system_stm32f0xx.d
│   │   │   │   └── system_stm32f0xx.o
│   │   │   ├── ST_Lib
│   │   │   │   ├── inc
│   │   │   │   │   ├── stm32f0xx_adc.h
│   │   │   │   │   ├── stm32f0xx_cec.h
│   │   │   │   │   ├── stm32f0xx_comp.h
│   │   │   │   │   ├── stm32f0xx_crc.h
│   │   │   │   │   ├── stm32f0xx_dac.h
│   │   │   │   │   ├── stm32f0xx_dbgmcu.h
│   │   │   │   │   ├── stm32f0xx_dma.h
│   │   │   │   │   ├── stm32f0xx_exti.h
│   │   │   │   │   ├── stm32f0xx_flash.h
│   │   │   │   │   ├── stm32f0xx_gpio.h
│   │   │   │   │   ├── stm32f0xx_i2c.h
│   │   │   │   │   ├── stm32f0xx_iwdg.h
│   │   │   │   │   ├── stm32f0xx_misc.h
│   │   │   │   │   ├── stm32f0xx_pwr.h
│   │   │   │   │   ├── stm32f0xx_rcc.h
│   │   │   │   │   ├── stm32f0xx_rtc.h
│   │   │   │   │   ├── stm32f0xx_spi.h
│   │   │   │   │   ├── stm32f0xx_syscfg.h
│   │   │   │   │   ├── stm32f0xx_tim.h
│   │   │   │   │   ├── stm32f0xx_usart.h
│   │   │   │   │   └── stm32f0xx_wwdg.h
│   │   │   │   └── src
│   │   │   │       ├── stm32f0xx_adc.c
│   │   │   │       ├── stm32f0xx_cec.c
│   │   │   │       ├── stm32f0xx_comp.c
│   │   │   │       ├── stm32f0xx_crc.c
│   │   │   │       ├── stm32f0xx_dac.c
│   │   │   │       ├── stm32f0xx_dbgmcu.c
│   │   │   │       ├── stm32f0xx_dma.c
│   │   │   │       ├── stm32f0xx_exti.c
│   │   │   │       ├── stm32f0xx_flash.c
│   │   │   │       ├── stm32f0xx_gpio.c
│   │   │   │       ├── stm32f0xx_i2c.c
│   │   │   │       ├── stm32f0xx_iwdg.c
│   │   │   │       ├── stm32f0xx_misc.c
│   │   │   │       ├── stm32f0xx_pwr.c
│   │   │   │       ├── stm32f0xx_rcc.c
│   │   │   │       ├── stm32f0xx_rtc.c
│   │   │   │       ├── stm32f0xx_spi.c
│   │   │   │       ├── stm32f0xx_syscfg.c
│   │   │   │       ├── stm32f0xx_tim.c
│   │   │   │       ├── stm32f0xx_usart.c
│   │   │   │       └── stm32f0xx_wwdg.c
│   │   │   ├── System
│   │   │   │   ├── CMSIS
│   │   │   │   │   ├── core_cm0.h
│   │   │   │   │   ├── core_cm0plus.h
│   │   │   │   │   ├── stm32f0xx.h
│   │   │   │   │   ├── stm32f0xx_conf.h
│   │   │   │   │   ├── system_stm32f0xx.c
│   │   │   │   │   └── system_stm32f0xx.h
│   │   │   │   └── startup
│   │   │   │       ├── startup_stm32f030x6.s
│   │   │   │       ├── startup_stm32f030x8.s
│   │   │   │       ├── startup_stm32f0xx.s
│   │   │   │       └── startup_stm32f0xx_ld.s
│   │   │   └── User
│   │   │       ├── ALL_Includes.h
│   │   │       ├── MyType.h
│   │   │       └── main.c
│   │   ├── Libraries
│   │   │   ├── Arduino
│   │   │   │   ├── inc
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── serial.h
│   │   │   │   │   └── spi.h
│   │   │   │   └── src
│   │   │   │       ├── gpio.c
│   │   │   │       ├── serial.c
│   │   │   │       └── spi.c
│   │   │   ├── CMSIS
│   │   │   │   ├── CMSIS END USER LICENCE AGREEMENT.pdf
│   │   │   │   ├── Device
│   │   │   │   │   └── ST
│   │   │   │   │       └── STM32F0xx
│   │   │   │   │           ├── Include
│   │   │   │   │           │   ├── stm32f0xx.h
│   │   │   │   │           │   └── system_stm32f0xx.h
│   │   │   │   │           ├── Release_Notes.html
│   │   │   │   │           └── Source
│   │   │   │   │               └── Templates
│   │   │   │   │                   ├── TrueSTUDIO
│   │   │   │   │                   │   └── startup_stm32f0xx.s
│   │   │   │   │                   ├── arm
│   │   │   │   │                   │   └── startup_stm32f0xx.s
│   │   │   │   │                   ├── gcc_ride7
│   │   │   │   │                   │   └── startup_stm32f0xx.s
│   │   │   │   │                   ├── iar
│   │   │   │   │                   │   └── startup_stm32f0xx.s
│   │   │   │   │                   └── system_stm32f0xx.c
│   │   │   │   ├── Documentation
│   │   │   │   │   ├── CMSIS-SVD_Schema_1_0.xsd
│   │   │   │   │   ├── CMSIS_CM4_SIMD.htm
│   │   │   │   │   ├── CMSIS_Core.htm
│   │   │   │   │   ├── CMSIS_DebugSupport.htm
│   │   │   │   │   ├── CMSIS_History.htm
│   │   │   │   │   ├── CMSIS_Logo_Final.jpg
│   │   │   │   │   └── CMSIS_System_View_Description.htm
│   │   │   │   ├── Include
│   │   │   │   │   ├── arm_common_tables.h
│   │   │   │   │   ├── arm_math.h
│   │   │   │   │   ├── core_cm0.h
│   │   │   │   │   ├── core_cm3.h
│   │   │   │   │   ├── core_cm4.h
│   │   │   │   │   ├── core_cm4_simd.h
│   │   │   │   │   ├── core_cmFunc.h
│   │   │   │   │   └── core_cmInstr.h
│   │   │   │   ├── README.txt
│   │   │   │   └── index.htm
│   │   │   ├── STM32F0xx_CPAL_Driver
│   │   │   │   ├── Release_Notes.html
│   │   │   │   ├── inc
│   │   │   │   │   ├── stm32f0xx_i2c_cpal.h
│   │   │   │   │   ├── stm32f0xx_i2c_cpal_conf_template.h
│   │   │   │   │   └── stm32f0xx_i2c_cpal_hal.h
│   │   │   │   └── src
│   │   │   │       ├── stm32f0xx_i2c_cpal.c
│   │   │   │       ├── stm32f0xx_i2c_cpal_hal.c
│   │   │   │       └── stm32f0xx_i2c_cpal_usercallback_template.c
│   │   │   └── STM32F0xx_StdPeriph_Driver
│   │   │       ├── Release_Notes.html
│   │   │       ├── inc
│   │   │       │   ├── stm32f0xx_adc.h
│   │   │       │   ├── stm32f0xx_cec.h
│   │   │       │   ├── stm32f0xx_comp.h
│   │   │       │   ├── stm32f0xx_crc.h
│   │   │       │   ├── stm32f0xx_dac.h
│   │   │       │   ├── stm32f0xx_dbgmcu.h
│   │   │       │   ├── stm32f0xx_dma.h
│   │   │       │   ├── stm32f0xx_exti.h
│   │   │       │   ├── stm32f0xx_flash.h
│   │   │       │   ├── stm32f0xx_gpio.h
│   │   │       │   ├── stm32f0xx_i2c.h
│   │   │       │   ├── stm32f0xx_iwdg.h
│   │   │       │   ├── stm32f0xx_misc.h
│   │   │       │   ├── stm32f0xx_pwr.h
│   │   │       │   ├── stm32f0xx_rcc.h
│   │   │       │   ├── stm32f0xx_rtc.h
│   │   │       │   ├── stm32f0xx_spi.h
│   │   │       │   ├── stm32f0xx_syscfg.h
│   │   │       │   ├── stm32f0xx_tim.h
│   │   │       │   ├── stm32f0xx_usart.h
│   │   │       │   └── stm32f0xx_wwdg.h
│   │   │       └── src
│   │   │           ├── stm32f0xx_adc.c
│   │   │           ├── stm32f0xx_cec.c
│   │   │           ├── stm32f0xx_comp.c
│   │   │           ├── stm32f0xx_crc.c
│   │   │           ├── stm32f0xx_dac.c
│   │   │           ├── stm32f0xx_dbgmcu.c
│   │   │           ├── stm32f0xx_dma.c
│   │   │           ├── stm32f0xx_exti.c
│   │   │           ├── stm32f0xx_flash.c
│   │   │           ├── stm32f0xx_gpio.c
│   │   │           ├── stm32f0xx_i2c.c
│   │   │           ├── stm32f0xx_iwdg.c
│   │   │           ├── stm32f0xx_misc.c
│   │   │           ├── stm32f0xx_pwr.c
│   │   │           ├── stm32f0xx_rcc.c
│   │   │           ├── stm32f0xx_rtc.c
│   │   │           ├── stm32f0xx_spi.c
│   │   │           ├── stm32f0xx_syscfg.c
│   │   │           ├── stm32f0xx_tim.c
│   │   │           ├── stm32f0xx_usart.c
│   │   │           └── stm32f0xx_wwdg.c
│   │   ├── RT-Thread_LED
│   │   │   ├── Project
│   │   │   │   ├── Project.uvgui.wuguoyan
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── Project_Project.dep
│   │   │   ├── applications
│   │   │   │   ├── SConscript
│   │   │   │   ├── application.c
│   │   │   │   ├── rtconfig.h
│   │   │   │   └── startup.c
│   │   │   ├── drivers
│   │   │   │   ├── SConscript
│   │   │   │   ├── board.c
│   │   │   │   ├── board.h
│   │   │   │   ├── stm32f0xx_conf.h
│   │   │   │   ├── stm32f0xx_it.c
│   │   │   │   └── stm32f0xx_it.h
│   │   │   └── rt-thread
│   │   │       ├── AUTHORS
│   │   │       ├── COPYING
│   │   │       ├── include
│   │   │       │   ├── rtdebug.h
│   │   │       │   ├── rtdef.h
│   │   │       │   ├── rthw.h
│   │   │       │   ├── rtm.h
│   │   │       │   ├── rtservice.h
│   │   │       │   └── rtthread.h
│   │   │       ├── libcpu
│   │   │       │   ├── SConscript
│   │   │       │   └── arm
│   │   │       │       ├── common
│   │   │       │       │   ├── backtrace.c
│   │   │       │       │   ├── div0.c
│   │   │       │       │   ├── divsi3.S
│   │   │       │       │   └── showmem.c
│   │   │       │       └── cortex-m0
│   │   │       │           ├── context_iar.S
│   │   │       │           ├── context_rvds.S
│   │   │       │           └── cpuport.c
│   │   │       ├── src
│   │   │       │   ├── SConscript
│   │   │       │   ├── clock.c
│   │   │       │   ├── device.c
│   │   │       │   ├── idle.c
│   │   │       │   ├── ipc.c
│   │   │       │   ├── irq.c
│   │   │       │   ├── kservice.c
│   │   │       │   ├── mem.c
│   │   │       │   ├── memheap.c
│   │   │       │   ├── mempool.c
│   │   │       │   ├── module.c
│   │   │       │   ├── module.h
│   │   │       │   ├── object.c
│   │   │       │   ├── rtm.c
│   │   │       │   ├── scheduler.c
│   │   │       │   ├── slab.c
│   │   │       │   ├── thread.c
│   │   │       │   └── timer.c
│   │   │       └── tools
│   │   │           ├── buildbot.py
│   │   │           ├── building.py
│   │   │           ├── building.pyc
│   │   │           ├── iar.py
│   │   │           ├── iar.pyc
│   │   │           ├── keil.py
│   │   │           ├── keil.pyc
│   │   │           ├── utils.py
│   │   │           └── utils.pyc
│   │   ├── RTX OS
│   │   │   ├── Project
│   │   │   │   ├── Project.uvgui.wuguoyan
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   └── Project_Project.dep
│   │   │   └── User
│   │   │       ├── RTX_Conf_CM.c
│   │   │       ├── main.c
│   │   │       ├── stm32f0xx_conf.h
│   │   │       ├── stm32f0xx_it.c
│   │   │       ├── stm32f0xx_it.h
│   │   │       └── system_stm32f0xx.c
│   │   ├── STM32F0 各种OS工程源码实验(已更新RTT的bug).rar
│   │   ├── STM32F030-uCOS_III.rar
│   │   ├── STM32F030F4_LED(Keil MDK 473或IAR EW6.70以上版本打开).rar
│   │   ├── STM32F030F4_LED_USART(Keil MDK 473或IAR EW6.70以上版本打开).rar
│   │   ├── STM32F030F4_LED_USART_DMA(FLASH_RAM)(Keil MDK 473或IAR EW6.70以上版本打开).rar
│   │   ├── STM32F030F4_LED_USART_EXIT(Keil MDK 473或IAR EW6.70以上版本打开).rar
│   │   ├── STM32F030F4_LED_USART_EXIT_ADC(Keil MDK 473或IAR EW6.70以上版本打开).rar
│   │   ├── STM32F030F4_LED_USART_EXIT_WFI(Keil MDK 473或IAR EW6.70以上版本打开).rar
│   │   ├── STM32F030F4_LED_USART_FLASH Program(Keil MDK 473或IAR EW6.70以上版本打开).rar
│   │   ├── STM32F030F4_LED_USART_IWDG(Keil MDK 473或IAR EW6.70以上版本打开).rar
│   │   ├── STM32F030F4_LED_USART_TIM(Keil MDK 473或IAR EW6.70以上版本打开).rar
│   │   ├── STM32F030串口
│   │   │   ├── CORE
│   │   │   │   ├── arm_common_tables.h
│   │   │   │   ├── arm_math.h
│   │   │   │   ├── core_cm0.h
│   │   │   │   ├── core_cmFunc.h
│   │   │   │   ├── core_cmInstr.h
│   │   │   │   └── startup_stm32f0xx.s
│   │   │   ├── HARDWARE
│   │   │   │   ├── Command.c
│   │   │   │   ├── Key.c
│   │   │   │   ├── Key.h
│   │   │   │   ├── STM32F030Demo.map
│   │   │   │   ├── USART1.c
│   │   │   │   ├── USART1.h
│   │   │   │   ├── USART1_API.c
│   │   │   │   ├── led.c
│   │   │   │   ├── led.h
│   │   │   │   └── startup_stm32f0xx.lst
│   │   │   ├── OBJ
│   │   │   │   ├── STM32F030Demo.axf
│   │   │   │   ├── STM32F030Demo.build_log.htm
│   │   │   │   ├── STM32F030Demo.htm
│   │   │   │   ├── STM32F030Demo.lnp
│   │   │   │   ├── delay.crf
│   │   │   │   ├── delay.d
│   │   │   │   ├── delay.o
│   │   │   │   ├── keilkill.bat
│   │   │   │   ├── key.crf
│   │   │   │   ├── key.d
│   │   │   │   ├── key.o
│   │   │   │   ├── led.crf
│   │   │   │   ├── led.d
│   │   │   │   ├── led.o
│   │   │   │   ├── main.crf
│   │   │   │   ├── main.d
│   │   │   │   ├── main.o
│   │   │   │   ├── startup_stm32f0xx.d
│   │   │   │   ├── startup_stm32f0xx.o
│   │   │   │   ├── stm32f0xx_gpio.crf
│   │   │   │   ├── stm32f0xx_gpio.d
│   │   │   │   ├── stm32f0xx_gpio.o
│   │   │   │   ├── stm32f0xx_it.crf
│   │   │   │   ├── stm32f0xx_it.d
│   │   │   │   ├── stm32f0xx_it.o
│   │   │   │   ├── stm32f0xx_misc.crf
│   │   │   │   ├── stm32f0xx_misc.d
│   │   │   │   ├── stm32f0xx_misc.o
│   │   │   │   ├── stm32f0xx_rcc.crf
│   │   │   │   ├── stm32f0xx_rcc.d
│   │   │   │   ├── stm32f0xx_rcc.o
│   │   │   │   ├── stm32f0xx_usart.crf
│   │   │   │   ├── stm32f0xx_usart.d
│   │   │   │   ├── stm32f0xx_usart.o
│   │   │   │   ├── system_stm32f0xx.crf
│   │   │   │   ├── system_stm32f0xx.d
│   │   │   │   ├── system_stm32f0xx.o
│   │   │   │   ├── usart1.crf
│   │   │   │   ├── usart1.d
│   │   │   │   ├── usart1.o
│   │   │   │   ├── usart1_api.crf
│   │   │   │   ├── usart1_api.d
│   │   │   │   └── usart1_api.o
│   │   │   ├── STM32F03x_FWLib
│   │   │   │   ├── inc
│   │   │   │   │   ├── stm32f0xx_adc.h
│   │   │   │   │   ├── stm32f0xx_cec.h
│   │   │   │   │   ├── stm32f0xx_comp.h
│   │   │   │   │   ├── stm32f0xx_crc.h
│   │   │   │   │   ├── stm32f0xx_dac.h
│   │   │   │   │   ├── stm32f0xx_dbgmcu.h
│   │   │   │   │   ├── stm32f0xx_dma.h
│   │   │   │   │   ├── stm32f0xx_exti.h
│   │   │   │   │   ├── stm32f0xx_flash.h
│   │   │   │   │   ├── stm32f0xx_gpio.h
│   │   │   │   │   ├── stm32f0xx_i2c.h
│   │   │   │   │   ├── stm32f0xx_iwdg.h
│   │   │   │   │   ├── stm32f0xx_misc.h
│   │   │   │   │   ├── stm32f0xx_pwr.h
│   │   │   │   │   ├── stm32f0xx_rcc.h
│   │   │   │   │   ├── stm32f0xx_rtc.h
│   │   │   │   │   ├── stm32f0xx_spi.h
│   │   │   │   │   ├── stm32f0xx_syscfg.h
│   │   │   │   │   ├── stm32f0xx_tim.h
│   │   │   │   │   ├── stm32f0xx_usart.h
│   │   │   │   │   └── stm32f0xx_wwdg.h
│   │   │   │   └── src
│   │   │   │       ├── stm32f0xx_adc.c
│   │   │   │       ├── stm32f0xx_cec.c
│   │   │   │       ├── stm32f0xx_comp.c
│   │   │   │       ├── stm32f0xx_crc.c
│   │   │   │       ├── stm32f0xx_dac.c
│   │   │   │       ├── stm32f0xx_dbgmcu.c
│   │   │   │       ├── stm32f0xx_dma.c
│   │   │   │       ├── stm32f0xx_exti.c
│   │   │   │       ├── stm32f0xx_flash.c
│   │   │   │       ├── stm32f0xx_gpio.c
│   │   │   │       ├── stm32f0xx_i2c.c
│   │   │   │       ├── stm32f0xx_iwdg.c
│   │   │   │       ├── stm32f0xx_misc.c
│   │   │   │       ├── stm32f0xx_pwr.c
│   │   │   │       ├── stm32f0xx_rcc.c
│   │   │   │       ├── stm32f0xx_rtc.c
│   │   │   │       ├── stm32f0xx_spi.c
│   │   │   │       ├── stm32f0xx_syscfg.c
│   │   │   │       ├── stm32f0xx_tim.c
│   │   │   │       ├── stm32f0xx_usart.c
│   │   │   │       └── stm32f0xx_wwdg.c
│   │   │   ├── SYSTEM
│   │   │   │   ├── delay.c
│   │   │   │   └── delay.h
│   │   │   └── User
│   │   │       ├── JLinkLog.txt
│   │   │       ├── JLinkSettings.ini
│   │   │       ├── STM32F030Demo.map
│   │   │       ├── STM32F030Demo.uvgui.Administrator
│   │   │       ├── STM32F030Demo.uvgui.vm-twd
│   │   │       ├── STM32F030Demo.uvgui_Administrator.bak
│   │   │       ├── STM32F030Demo.uvgui_vm-twd.bak
│   │   │       ├── STM32F030Demo.uvopt
│   │   │       ├── STM32F030Demo.uvproj
│   │   │       ├── STM32F030Demo_Stm32f030demo.dep
│   │   │       ├── STM32F030Demo_uvopt.bak
│   │   │       ├── STM32F030Demo_uvproj.bak
│   │   │       ├── include.h
│   │   │       ├── keilkill.bat
│   │   │       ├── main.c
│   │   │       ├── startup_stm32f0xx.lst
│   │   │       ├── stm32f0xx.h
│   │   │       ├── stm32f0xx_conf.h
│   │   │       ├── stm32f0xx_it.c
│   │   │       ├── stm32f0xx_it.h
│   │   │       ├── system_stm32f0xx.c
│   │   │       └── system_stm32f0xx.h
│   │   ├── STM32F030串口.rar
│   │   ├── uCOS-II-V2.91
│   │   │   ├── Project
│   │   │   │   ├── Project.uvgui.wuguoyan
│   │   │   │   ├── Project.uvopt
│   │   │   │   ├── Project.uvproj
│   │   │   │   ├── Project_Project.dep
│   │   │   │   └── startup_stm32f0xx.s
│   │   │   ├── User
│   │   │   │   ├── app_cfg.h
│   │   │   │   ├── main.c
│   │   │   │   ├── os_cfg.h
│   │   │   │   ├── stm32f0xx_conf.h
│   │   │   │   ├── stm32f0xx_it.c
│   │   │   │   ├── stm32f0xx_it.h
│   │   │   │   └── system_stm32f0xx.c
│   │   │   └── uCOS-II
│   │   │       ├── Ports
│   │   │       │   ├── os_cpu.h
│   │   │       │   ├── os_cpu_a.asm
│   │   │       │   ├── os_cpu_c.c
│   │   │       │   └── os_dbg.c
│   │   │       └── Source
│   │   │           ├── os_core.c
│   │   │           ├── os_dbg_r.c
│   │   │           ├── os_flag.c
│   │   │           ├── os_mbox.c
│   │   │           ├── os_mem.c
│   │   │           ├── os_mutex.c
│   │   │           ├── os_q.c
│   │   │           ├── os_sem.c
│   │   │           ├── os_task.c
│   │   │           ├── os_time.c
│   │   │           ├── os_tmr.c
│   │   │           ├── ucos_ii.c
│   │   │           └── ucos_ii.h
│   │   ├── 未整理
│   │   │   ├── STM32F030_DEMO
│   │   │   │   ├── DOC
│   │   │   │   │   ├── RM0091编程手册.pdf
│   │   │   │   │   ├── STM32F030原理图.pdf
│   │   │   │   │   └── 数据手册.pdf
│   │   │   │   ├── Libraries
│   │   │   │   │   └── STM32F0xx_StdPeriph_Driver
│   │   │   │   │       ├── Release_Notes.html
│   │   │   │   │       ├── inc
│   │   │   │   │       │   ├── stm32f0xx_adc.h
│   │   │   │   │       │   ├── stm32f0xx_cec.h
│   │   │   │   │       │   ├── stm32f0xx_comp.h
│   │   │   │   │       │   ├── stm32f0xx_crc.h
│   │   │   │   │       │   ├── stm32f0xx_dac.h
│   │   │   │   │       │   ├── stm32f0xx_dbgmcu.h
│   │   │   │   │       │   ├── stm32f0xx_dma.h
│   │   │   │   │       │   ├── stm32f0xx_exti.h
│   │   │   │   │       │   ├── stm32f0xx_flash.h
│   │   │   │   │       │   ├── stm32f0xx_gpio.h
│   │   │   │   │       │   ├── stm32f0xx_i2c.h
│   │   │   │   │       │   ├── stm32f0xx_iwdg.h
│   │   │   │   │       │   ├── stm32f0xx_misc.h
│   │   │   │   │       │   ├── stm32f0xx_pwr.h
│   │   │   │   │       │   ├── stm32f0xx_rcc.h
│   │   │   │   │       │   ├── stm32f0xx_rtc.h
│   │   │   │   │       │   ├── stm32f0xx_spi.h
│   │   │   │   │       │   ├── stm32f0xx_syscfg.h
│   │   │   │   │       │   ├── stm32f0xx_tim.h
│   │   │   │   │       │   ├── stm32f0xx_usart.h
│   │   │   │   │       │   └── stm32f0xx_wwdg.h
│   │   │   │   │       └── src
│   │   │   │   │           ├── stm32f0xx_adc.c
│   │   │   │   │           ├── stm32f0xx_cec.c
│   │   │   │   │           ├── stm32f0xx_comp.c
│   │   │   │   │           ├── stm32f0xx_crc.c
│   │   │   │   │           ├── stm32f0xx_dac.c
│   │   │   │   │           ├── stm32f0xx_dbgmcu.c
│   │   │   │   │           ├── stm32f0xx_dma.c
│   │   │   │   │           ├── stm32f0xx_exti.c
│   │   │   │   │           ├── stm32f0xx_flash.c
│   │   │   │   │           ├── stm32f0xx_gpio.c
│   │   │   │   │           ├── stm32f0xx_i2c.c
│   │   │   │   │           ├── stm32f0xx_iwdg.c
│   │   │   │   │           ├── stm32f0xx_misc.c
│   │   │   │   │           ├── stm32f0xx_pwr.c
│   │   │   │   │           ├── stm32f0xx_rcc.c
│   │   │   │   │           ├── stm32f0xx_rtc.c
│   │   │   │   │           ├── stm32f0xx_spi.c
│   │   │   │   │           ├── stm32f0xx_syscfg.c
│   │   │   │   │           ├── stm32f0xx_tim.c
│   │   │   │   │           ├── stm32f0xx_usart.c
│   │   │   │   │           └── stm32f0xx_wwdg.c
│   │   │   │   ├── MDK_PRJ
│   │   │   │   │   ├── YBDZ_STM32_DEMO.uvgui.Administrator
│   │   │   │   │   ├── YBDZ_STM32_DEMO.uvgui.vm-twd
│   │   │   │   │   ├── YBDZ_STM32_DEMO.uvgui_Administrator.bak
│   │   │   │   │   ├── YBDZ_STM32_DEMO.uvopt
│   │   │   │   │   ├── YBDZ_STM32_DEMO.uvproj
│   │   │   │   │   ├── YBDZ_STM32_DEMO_YBDZ_STM32_DEMO.dep
│   │   │   │   │   ├── YBDZ_STM32_DEMO_uvopt.bak
│   │   │   │   │   └── YBDZ_STM32_DEMO_uvproj.bak
│   │   │   │   ├── OUTPUT
│   │   │   │   │   ├── ExtDll.iex
│   │   │   │   │   ├── YBDZ_STM32F030.axf
│   │   │   │   │   ├── YBDZ_STM32F030.hex
│   │   │   │   │   ├── YBDZ_STM32F030.htm
│   │   │   │   │   ├── YBDZ_STM32F030.lnp
│   │   │   │   │   ├── YBDZ_STM32F030.map
│   │   │   │   │   ├── YBDZ_STM32F030.plg
│   │   │   │   │   ├── YBDZ_STM32F030.sct
│   │   │   │   │   ├── main.d
│   │   │   │   │   ├── main.o
│   │   │   │   │   ├── startup_stm32f0xx.d
│   │   │   │   │   ├── startup_stm32f0xx.o
│   │   │   │   │   ├── stm32f0xx_exti.d
│   │   │   │   │   ├── stm32f0xx_exti.o
│   │   │   │   │   ├── stm32f0xx_gpio.d
│   │   │   │   │   ├── stm32f0xx_gpio.o
│   │   │   │   │   ├── stm32f0xx_it.d
│   │   │   │   │   ├── stm32f0xx_it.o
│   │   │   │   │   ├── stm32f0xx_misc.d
│   │   │   │   │   ├── stm32f0xx_misc.o
│   │   │   │   │   ├── stm32f0xx_rcc.d
│   │   │   │   │   ├── stm32f0xx_rcc.o
│   │   │   │   │   ├── stm32f0xx_syscfg.d
│   │   │   │   │   ├── stm32f0xx_syscfg.o
│   │   │   │   │   ├── system_stm32f0xx.d
│   │   │   │   │   └── system_stm32f0xx.o
│   │   │   │   └── SRC
│   │   │   │       ├── main.c
│   │   │   │       ├── startup_stm32f0xx.s
│   │   │   │       ├── stm32f0xx_conf.h
│   │   │   │       ├── stm32f0xx_it.c
│   │   │   │       ├── stm32f0xx_it.h
│   │   │   │       └── system_stm32f0xx.c
│   │   │   └── STM32F030_DEMO.rar
│   │   └── 官方库-源码
│   │       └── STM32F0xx_StdPeriph_Driver
│   │           ├── Release_Notes.html
│   │           ├── inc
│   │           │   ├── stm32f0xx_adc.h
│   │           │   ├── stm32f0xx_cec.h
│   │           │   ├── stm32f0xx_comp.h
│   │           │   ├── stm32f0xx_crc.h
│   │           │   ├── stm32f0xx_dac.h
│   │           │   ├── stm32f0xx_dbgmcu.h
│   │           │   ├── stm32f0xx_dma.h
│   │           │   ├── stm32f0xx_exti.h
│   │           │   ├── stm32f0xx_flash.h
│   │           │   ├── stm32f0xx_gpio.h
│   │           │   ├── stm32f0xx_i2c.h
│   │           │   ├── stm32f0xx_iwdg.h
│   │           │   ├── stm32f0xx_misc.h
│   │           │   ├── stm32f0xx_pwr.h
│   │           │   ├── stm32f0xx_rcc.h
│   │           │   ├── stm32f0xx_rtc.h
│   │           │   ├── stm32f0xx_spi.h
│   │           │   ├── stm32f0xx_syscfg.h
│   │           │   ├── stm32f0xx_tim.h
│   │           │   ├── stm32f0xx_usart.h
│   │           │   └── stm32f0xx_wwdg.h
│   │           └── src
│   │               ├── stm32f0xx_adc.c
│   │               ├── stm32f0xx_cec.c
│   │               ├── stm32f0xx_comp.c
│   │               ├── stm32f0xx_crc.c
│   │               ├── stm32f0xx_dac.c
│   │               ├── stm32f0xx_dbgmcu.c
│   │               ├── stm32f0xx_dma.c
│   │               ├── stm32f0xx_exti.c
│   │               ├── stm32f0xx_flash.c
│   │               ├── stm32f0xx_gpio.c
│   │               ├── stm32f0xx_i2c.c
│   │               ├── stm32f0xx_iwdg.c
│   │               ├── stm32f0xx_misc.c
│   │               ├── stm32f0xx_pwr.c
│   │               ├── stm32f0xx_rcc.c
│   │               ├── stm32f0xx_rtc.c
│   │               ├── stm32f0xx_spi.c
│   │               ├── stm32f0xx_syscfg.c
│   │               ├── stm32f0xx_tim.c
│   │               ├── stm32f0xx_usart.c
│   │               └── stm32f0xx_wwdg.c
│   └── 6.下载相关工具
│       ├── ISP串口下载软件
│       │   ├── FlyMcu.exe
│       │   ├── FlyMcu.rar
│       │   ├── FlyMcuConfig.ini
│       │   └── ProgramLogs.txt
│       ├── STLINK下载说明.docx
│       └── 用JLINK下载与接线.docx
└── STM32F030最小系统资料包.zip

128 directories, 865 files


标签: STM32F030 STM32 STM3 stm 32

实例下载地址

STM32F030最小系统资料包

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警