基本信息
源码名称:STM32Nucleo_F303RE工程模板
源码大小:8.69M
文件格式:.zip
开发语言:C/C++
更新时间:2021-12-29
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 4 元 
   源码介绍

STM32F303RE工程模板,提供了基本的配置功能

.
├── STM32Nucleo_F303RE工程模板
│   ├── Libraries
│   │   ├── CMSIS
│   │   │   ├── DSP_Lib
│   │   │   │   └── 重要说明.txt
│   │   │   ├── Device
│   │   │   │   └── ST
│   │   │   │       └── STM32F30x
│   │   │   │           ├── Include
│   │   │   │           │   ├── stm32f30x.h
│   │   │   │           │   └── system_stm32f30x.h
│   │   │   │           ├── Release_Notes.html
│   │   │   │           └── Source
│   │   │   │               └── Templates
│   │   │   │                   ├── arm
│   │   │   │                   │   ├── startup_stm32f302x8.s
│   │   │   │                   │   ├── startup_stm32f303xc.s
│   │   │   │                   │   ├── startup_stm32f303xe.s
│   │   │   │                   │   ├── startup_stm32f30x.s
│   │   │   │                   │   └── startup_stm32f334x8.s
│   │   │   │                   ├── system_stm32f30x.c
│   │   │   │                   └── 重要说明.txt
│   │   │   ├── Documentation
│   │   │   │   └── 重要说明.txt
│   │   │   ├── Include
│   │   │   │   ├── arm_common_tables.h
│   │   │   │   ├── arm_const_structs.h
│   │   │   │   ├── arm_math.h
│   │   │   │   ├── core_cm0.h
│   │   │   │   ├── core_cm0plus.h
│   │   │   │   ├── core_cm3.h
│   │   │   │   ├── core_cm4.h
│   │   │   │   ├── core_cm7.h
│   │   │   │   ├── core_cmFunc.h
│   │   │   │   ├── core_cmInstr.h
│   │   │   │   ├── core_cmSimd.h
│   │   │   │   ├── core_sc000.h
│   │   │   │   └── core_sc300.h
│   │   │   ├── Lib
│   │   │   │   └── 重要说明.txt
│   │   │   ├── README.txt
│   │   │   ├── RTOS
│   │   │   │   └── Template
│   │   │   │       └── cmsis_os.h
│   │   │   └── 重要说明.txt
│   │   ├── STM32F30x_I2C_CPAL_Driver
│   │   │   ├── Release_Notes.html
│   │   │   ├── inc
│   │   │   │   ├── stm32f30x_i2c_cpal.h
│   │   │   │   ├── stm32f30x_i2c_cpal_conf_template.h
│   │   │   │   └── stm32f30x_i2c_cpal_hal.h
│   │   │   └── src
│   │   │       ├── stm32f30x_i2c_cpal.c
│   │   │       ├── stm32f30x_i2c_cpal_hal.c
│   │   │       └── stm32f30x_i2c_cpal_usercallback_template.c
│   │   ├── STM32F30x_StdPeriph_Driver
│   │   │   ├── Release_Notes.html
│   │   │   ├── inc
│   │   │   │   ├── stm32f30x_adc.h
│   │   │   │   ├── stm32f30x_can.h
│   │   │   │   ├── stm32f30x_comp.h
│   │   │   │   ├── stm32f30x_crc.h
│   │   │   │   ├── stm32f30x_dac.h
│   │   │   │   ├── stm32f30x_dbgmcu.h
│   │   │   │   ├── stm32f30x_dma.h
│   │   │   │   ├── stm32f30x_exti.h
│   │   │   │   ├── stm32f30x_flash.h
│   │   │   │   ├── stm32f30x_fmc.h
│   │   │   │   ├── stm32f30x_gpio.h
│   │   │   │   ├── stm32f30x_hrtim.h
│   │   │   │   ├── stm32f30x_i2c.h
│   │   │   │   ├── stm32f30x_iwdg.h
│   │   │   │   ├── stm32f30x_misc.h
│   │   │   │   ├── stm32f30x_opamp.h
│   │   │   │   ├── stm32f30x_pwr.h
│   │   │   │   ├── stm32f30x_rcc.h
│   │   │   │   ├── stm32f30x_rtc.h
│   │   │   │   ├── stm32f30x_spi.h
│   │   │   │   ├── stm32f30x_syscfg.h
│   │   │   │   ├── stm32f30x_tim.h
│   │   │   │   ├── stm32f30x_usart.h
│   │   │   │   └── stm32f30x_wwdg.h
│   │   │   └── src
│   │   │       ├── stm32f30x_adc.c
│   │   │       ├── stm32f30x_can.c
│   │   │       ├── stm32f30x_dac.c
│   │   │       ├── stm32f30x_dbgmcu.c
│   │   │       ├── stm32f30x_dma.c
│   │   │       ├── stm32f30x_exti.c
│   │   │       ├── stm32f30x_flash.c
│   │   │       ├── stm32f30x_fmc.c
│   │   │       ├── stm32f30x_gpio.c
│   │   │       ├── stm32f30x_hrtim.c
│   │   │       ├── stm32f30x_i2c.c
│   │   │       ├── stm32f30x_iwdg.c
│   │   │       ├── stm32f30x_misc.c
│   │   │       ├── stm32f30x_opamp.c
│   │   │       ├── stm32f30x_pwr.c
│   │   │       ├── stm32f30x_rcc.c
│   │   │       ├── stm32f30x_rtc.c
│   │   │       ├── stm32f30x_spi.c
│   │   │       ├── stm32f30x_syscfg.c
│   │   │       ├── stm32f30x_tim.c
│   │   │       ├── stm32f30x_usart.c
│   │   │       └── stm32f30x_wwdg.c
│   │   └── 重要说明.txt
│   ├── Project
│   │   ├── CpuRAM.ini
│   │   ├── DebugConfig
│   │   │   └── F303RE_SRAM_STM32F303RE.dbgconf
│   │   ├── STM32Nucleo_F303RE.uvgui.Administrator
│   │   ├── STM32Nucleo_F303RE.uvgui.XIE
│   │   ├── STM32Nucleo_F303RE.uvgui_XIE.bak
│   │   ├── STM32Nucleo_F303RE.uvguix.XIE
│   │   ├── STM32Nucleo_F303RE.uvopt
│   │   ├── STM32Nucleo_F303RE.uvoptx
│   │   ├── STM32Nucleo_F303RE.uvproj.saved_uv4
│   │   ├── STM32Nucleo_F303RE.uvprojx
│   │   ├── STM32Nucleo_F303RE_F303RE_SRAM.dep
│   │   ├── STM32Nucleo_F303RE_uvopt.bak
│   │   ├── STM32Nucleo_F303RE_uvproj.bak
│   │   ├── list
│   │   │   ├── STM32Nucleo_F303RE.map
│   │   │   └── startup_stm32f303xe.lst
│   │   ├── output
│   │   │   ├── STM32Nucleo_F303RE.axf
│   │   │   ├── STM32Nucleo_F303RE.build_log.htm
│   │   │   ├── STM32Nucleo_F303RE.hex
│   │   │   ├── STM32Nucleo_F303RE.htm
│   │   │   ├── STM32Nucleo_F303RE.lnp
│   │   │   ├── STM32Nucleo_F303RE.plg
│   │   │   ├── STM32Nucleo_F303RE.sct
│   │   │   ├── STM32Nucleo_F303RE_F303RE_SRAM.dep
│   │   │   ├── delay.crf
│   │   │   ├── delay.d
│   │   │   ├── delay.o
│   │   │   ├── led_key.crf
│   │   │   ├── led_key.d
│   │   │   ├── led_key.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── startup_stm32f303xe.d
│   │   │   ├── startup_stm32f303xe.o
│   │   │   ├── stm32f30x_adc.crf
│   │   │   ├── stm32f30x_adc.d
│   │   │   ├── stm32f30x_adc.o
│   │   │   ├── stm32f30x_can.crf
│   │   │   ├── stm32f30x_can.d
│   │   │   ├── stm32f30x_can.o
│   │   │   ├── stm32f30x_dac.crf
│   │   │   ├── stm32f30x_dac.d
│   │   │   ├── stm32f30x_dac.o
│   │   │   ├── stm32f30x_dbgmcu.crf
│   │   │   ├── stm32f30x_dbgmcu.d
│   │   │   ├── stm32f30x_dbgmcu.o
│   │   │   ├── stm32f30x_dma.crf
│   │   │   ├── stm32f30x_dma.d
│   │   │   ├── stm32f30x_dma.o
│   │   │   ├── stm32f30x_exti.crf
│   │   │   ├── stm32f30x_exti.d
│   │   │   ├── stm32f30x_exti.o
│   │   │   ├── stm32f30x_flash.crf
│   │   │   ├── stm32f30x_flash.d
│   │   │   ├── stm32f30x_flash.o
│   │   │   ├── stm32f30x_fmc.crf
│   │   │   ├── stm32f30x_fmc.d
│   │   │   ├── stm32f30x_fmc.o
│   │   │   ├── stm32f30x_gpio.crf
│   │   │   ├── stm32f30x_gpio.d
│   │   │   ├── stm32f30x_gpio.o
│   │   │   ├── stm32f30x_hrtim.crf
│   │   │   ├── stm32f30x_hrtim.d
│   │   │   ├── stm32f30x_hrtim.o
│   │   │   ├── stm32f30x_i2c.crf
│   │   │   ├── stm32f30x_i2c.d
│   │   │   ├── stm32f30x_i2c.o
│   │   │   ├── stm32f30x_it.crf
│   │   │   ├── stm32f30x_it.d
│   │   │   ├── stm32f30x_it.o
│   │   │   ├── stm32f30x_iwdg.crf
│   │   │   ├── stm32f30x_iwdg.d
│   │   │   ├── stm32f30x_iwdg.o
│   │   │   ├── stm32f30x_misc.crf
│   │   │   ├── stm32f30x_misc.d
│   │   │   ├── stm32f30x_misc.o
│   │   │   ├── stm32f30x_opamp.crf
│   │   │   ├── stm32f30x_opamp.d
│   │   │   ├── stm32f30x_opamp.o
│   │   │   ├── stm32f30x_pwr.crf
│   │   │   ├── stm32f30x_pwr.d
│   │   │   ├── stm32f30x_pwr.o
│   │   │   ├── stm32f30x_rcc.crf
│   │   │   ├── stm32f30x_rcc.d
│   │   │   ├── stm32f30x_rcc.o
│   │   │   ├── stm32f30x_rtc.crf
│   │   │   ├── stm32f30x_rtc.d
│   │   │   ├── stm32f30x_rtc.o
│   │   │   ├── stm32f30x_spi.crf
│   │   │   ├── stm32f30x_spi.d
│   │   │   ├── stm32f30x_spi.o
│   │   │   ├── stm32f30x_syscfg.crf
│   │   │   ├── stm32f30x_syscfg.d
│   │   │   ├── stm32f30x_syscfg.o
│   │   │   ├── stm32f30x_tim.crf
│   │   │   ├── stm32f30x_tim.d
│   │   │   ├── stm32f30x_tim.o
│   │   │   ├── stm32f30x_usart.crf
│   │   │   ├── stm32f30x_usart.d
│   │   │   ├── stm32f30x_usart.o
│   │   │   ├── stm32f30x_wwdg.crf
│   │   │   ├── stm32f30x_wwdg.d
│   │   │   ├── stm32f30x_wwdg.o
│   │   │   ├── system_stm32f30x.crf
│   │   │   ├── system_stm32f30x.d
│   │   │   ├── system_stm32f30x.o
│   │   │   ├── usart.crf
│   │   │   ├── usart.d
│   │   │   └── usart.o
│   │   ├── stm32f30x_conf.h
│   │   ├── stm32f30x_i2c_cpal_conf.h
│   │   ├── stm32f30x_it.c
│   │   ├── stm32f30x_it.h
│   │   └── system_stm32f30x.c
│   └── User
│       ├── Delay.c
│       ├── Delay.h
│       ├── LED_Key.c
│       ├── LED_Key.h
│       ├── USART.c
│       ├── USART.h
│       ├── main.c
│       └── main.h
└── 好例子网_STM32Nucleo_F303RE工程模板.zip

27 directories, 207 files