【E1057】分享几个写的STM32F030的外设程序

2021-09-11 15:28:14      索炜达电子      933     

项目编号:E1057

文件大小:3M

源码说明:带中文注释

开发环境:C编译器

简要概述:

分享几个STM32F030的外设程序,包含“ADC DMA转换”、“片内Flash读写数据”、“TIM3-CH1捕获红外解码”、“USART1 DMA 收发不定长数据”、“定时器16 17溢出中断”、“独立看门狗”

目录│文件列表:

 └ F030例程

    └ F030例程

       │ keilkilll.bat

       ├ ADC DMA转换

       │  │ keilkilll.bat

       │  ├ HardWare

       │  │  │ DS3231.C

       │  │  │ DS3231.h

       │  │  │ TM1650.c

       │  │  └ TM1650.H

       │  ├ Libraries

       │  │  ├ CMSIS

       │  │  │  ├ Device

       │  │  │  │  └ ST

       │  │  │  │     └ STM32F0xx

       │  │  │  │        ├ Include

       │  │  │  │        │  │ stm32f0xx.h

       │  │  │  │        │  └ system_stm32f0xx.h

       │  │  │  │        └ Source

       │  │  │  │           └ Templates

       │  │  │  │              │ system_stm32f0xx.c

       │  │  │  │              ├ arm

       │  │  │  │              │  │ startup_stm32f030.s

       │  │  │  │              │  │ startup_stm32f030xc.s

       │  │  │  │              │  │ startup_stm32f031.s

       │  │  │  │              │  │ startup_stm32f042.s

       │  │  │  │              │  │ startup_stm32f051.s

       │  │  │  │              │  │ startup_stm32f070x6.s

       │  │  │  │              │  │ startup_stm32f070xb.s

       │  │  │  │              │  │ startup_stm32f072.s

       │  │  │  │              │  │ startup_stm32f091.s

       │  │  │  │              │  │ startup_stm32f0xx.s

       │  │  │  │              │  └ startup_stm32f0xx_ld.s

       │  │  │  │              ├ gcc_ride7

       │  │  │  │              │  │ startup_stm32f030.s

       │  │  │  │              │  │ startup_stm32f031.s

       │  │  │  │              │  │ startup_stm32f042.s

       │  │  │  │              │  │ startup_stm32f051.s

       │  │  │  │              │  │ startup_stm32f072.s

       │  │  │  │              │  └ startup_stm32f0xx.s

       │  │  │  │              ├ iar

       │  │  │  │              │  │ startup_stm32f030.s

       │  │  │  │              │  │ startup_stm32f030xc.s

       │  │  │  │              │  │ startup_stm32f031.s

       │  │  │  │              │  │ startup_stm32f042.s

       │  │  │  │              │  │ startup_stm32f051.s

       │  │  │  │              │  │ startup_stm32f070x6.s

       │  │  │  │              │  │ startup_stm32f070xb.s

       │  │  │  │              │  │ startup_stm32f072.s

       │  │  │  │              │  │ startup_stm32f091.s

       │  │  │  │              │  │ startup_stm32f0xx.s

       │  │  │  │              │  └ startup_stm32f0xx_ld.s

       │  │  │  │              └ TrueSTUDIO

       │  │  │  │                 │ startup_stm32f030.s

       │  │  │  │                 │ startup_stm32f030xc.s

       │  │  │  │                 │ startup_stm32f031.s

       │  │  │  │                 │ startup_stm32f042.s

       │  │  │  │                 │ startup_stm32f051.s

       │  │  │  │                 │ startup_stm32f070x6.s

       │  │  │  │                 │ startup_stm32f070xb.s

       │  │  │  │                 │ startup_stm32f072.s

       │  │  │  │                 │ startup_stm32f091.s

       │  │  │  │                 │ startup_stm32f0xx.s

       │  │  │  │                 └ startup_stm32f0xx_ld.s

       │  │  │  └ 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_cm4_simd.h

       │  │  │     │ core_cmFunc.h

       │  │  │     │ core_cmInstr.h

       │  │  │     │ core_sc000.h

       │  │  │     └ core_sc300.h

       │  │  ├ STM32F0xx_CPAL_Driver

       │  │  │  ├ 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

       │  │     ├ inc

       │  │     │  │ stm32f0xx_adc.h

       │  │     │  │ stm32f0xx_can.h

       │  │     │  │ stm32f0xx_cec.h

       │  │     │  │ stm32f0xx_comp.h

       │  │     │  │ stm32f0xx_crc.h

       │  │     │  │ stm32f0xx_crs.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

TAGSTM32F030
  • 14 次
  • 1 分