【E1694】使用STM32CubeMX V6.0.0创建的STM32L151C8T6工程

2021-10-23 16:20:57      索炜达电子      610     

项目编号:E1694

文件大小:4.8M

源码说明:带中文注释

开发环境:C编译器

简要概述:

使用STM32CubeMX V6.0.0创建的STM32L151C8T6工程

目录│文件列表:

 └ stm32-cube-mx-stm32-l151-c8-t6

    │ keilkilll.bat

    ├ 01_LED

    │  └ LED

    │     │ .mxproject

    │     │ LED.ioc

    │     ├ Core

    │     │  ├ Inc

    │     │  │  │ gpio.h

    │     │  │  │ main.h

    │     │  │  │ stm32l1xx_hal_conf.h

    │     │  │  └ stm32l1xx_it.h

    │     │  └ Src

    │     │     │ gpio.c

    │     │     │ main.c

    │     │     │ stm32l1xx_hal_msp.c

    │     │     │ stm32l1xx_it.c

    │     │     └ system_stm32l1xx.c

    │     ├ Drivers

    │     │  ├ CMSIS

    │     │  │  ├ Device

    │     │  │  │  └ ST

    │     │  │  │     └ STM32L1xx

    │     │  │  │        └ Include

    │     │  │  │           │ stm32l151xba.h

    │     │  │  │           │ stm32l1xx.h

    │     │  │  │           └ system_stm32l1xx.h

    │     │  │  └ Include

    │     │  │     │ cmsis_armcc.h

    │     │  │     │ cmsis_armclang.h

    │     │  │     │ cmsis_compiler.h

    │     │  │     │ cmsis_gcc.h

    │     │  │     │ cmsis_iccarm.h

    │     │  │     │ cmsis_version.h

    │     │  │     │ core_armv8mbl.h

    │     │  │     │ core_armv8mml.h

    │     │  │     │ core_cm0.h

    │     │  │     │ core_cm0plus.h

    │     │  │     │ core_cm1.h

    │     │  │     │ core_cm23.h

    │     │  │     │ core_cm3.h

    │     │  │     │ core_cm33.h

    │     │  │     │ core_cm4.h

    │     │  │     │ core_cm7.h

    │     │  │     │ core_sc000.h

    │     │  │     │ core_sc300.h

    │     │  │     │ mpu_armv7.h

    │     │  │     │ mpu_armv8.h

    │     │  │     └ tz_context.h

    │     │  └ STM32L1xx_HAL_Driver

    │     │     ├ Inc

    │     │     │  │ stm32l1xx_hal.h

    │     │     │  │ stm32l1xx_hal_cortex.h

    │     │     │  │ stm32l1xx_hal_def.h

    │     │     │  │ stm32l1xx_hal_dma.h

    │     │     │  │ stm32l1xx_hal_exti.h

    │     │     │  │ stm32l1xx_hal_flash.h

    │     │     │  │ stm32l1xx_hal_flash_ex.h

    │     │     │  │ stm32l1xx_hal_flash_ramfunc.h

    │     │     │  │ stm32l1xx_hal_gpio.h

    │     │     │  │ stm32l1xx_hal_gpio_ex.h

    │     │     │  │ stm32l1xx_hal_pwr.h

    │     │     │  │ stm32l1xx_hal_pwr_ex.h

    │     │     │  │ stm32l1xx_hal_rcc.h

    │     │     │  │ stm32l1xx_hal_rcc_ex.h

    │     │     │  │ stm32l1xx_hal_tim.h

    │     │     │  │ stm32l1xx_hal_tim_ex.h

    │     │     │  └ Legacy

    │     │     │     └ stm32_hal_legacy.h

    │     │     └ Src

    │     │        │ stm32l1xx_hal.c

    │     │        │ stm32l1xx_hal_cortex.c

    │     │        │ stm32l1xx_hal_dma.c

    │     │        │ stm32l1xx_hal_exti.c

    │     │        │ stm32l1xx_hal_flash.c

    │     │        │ stm32l1xx_hal_flash_ex.c

    │     │        │ stm32l1xx_hal_flash_ramfunc.c

    │     │        │ stm32l1xx_hal_gpio.c

    │     │        │ stm32l1xx_hal_pwr.c

    │     │        │ stm32l1xx_hal_pwr_ex.c

    │     │        │ stm32l1xx_hal_rcc.c

    │     │        │ stm32l1xx_hal_rcc_ex.c

    │     │        │ stm32l1xx_hal_tim.c

    │     │        └ stm32l1xx_hal_tim_ex.c

    │     └ MDK-ARM

    │        │ LED.uvguix.15212

    │        │ LED.uvoptx

    │        │ LED.uvprojx

    │        │ startup_stm32l151xba.s

    │        ├ DebugConfig

    │        │  └ LED_STM32L151C8xxA.dbgconf

    │        ├ LED

    │        │  └ LED.hex

    │        └ RTE

    │           └ _LED

    │              └ RTE_Components.h

    ├ 02_EXTI

    │  └ EXTI

    │     │ .mxproject

    │     │ EXTI.ioc

    │     ├ Core

    │     │  ├ Inc

    │     │  │  │ gpio.h

    │     │  │  │ main.h

    │     │  │  │ stm32l1xx_hal_conf.h

    │     │  │  └ stm32l1xx_it.h

    │     │  └ Src

    │     │     │ gpio.c

    │     │     │ main.c

    │     │     │ stm32l1xx_hal_msp.c

    │     │     │ stm32l1xx_it.c

    │     │     └ system_stm32l1xx.c

    │     ├ Drivers

    │     │  ├ CMSIS

    │     │  │  ├ Device

    │     │  │  │  └ ST

    │     │  │  │     └ STM32L1xx

    │     │  │  │        └ Include

    │     │  │  │           │ stm32l151xba.h

    │     │  │  │           │ stm32l1xx.h

    │     │  │  │           └ system_stm32l1xx.h

    │     │  │  └ Include

    │     │  │     │ cmsis_armcc.h

    │     │  │     │ cmsis_armclang.h

    │     │  │     │ cmsis_compiler.h

    │     │  │     │ cmsis_gcc.h

    │     │  │     │ cmsis_iccarm.h

    │     │  │     │ cmsis_version.h

    │     │  │     │ core_armv8mbl.h

    │     │  │     │ core_armv8mml.h

    │     │  │     │ core_cm0.h

    │     │  │     │ core_cm0plus.h

    │     │  │     │ core_cm1.h

    │     │  │     │ core_cm23.h

    │     │  │     │ core_cm3.h

    │     │  │     │ core_cm33.h

    │     │  │     │ core_cm4.h

    │     │  │     │ core_cm7.h

    │     │  │     │ core_sc000.h

    │     │  │     │ core_sc300.h

    │     │  │     │ mpu_armv7.h

    │     │  │     │ mpu_armv8.h

    │     │  │     └ tz_context.h

    │     │  └ STM32L1xx_HAL_Driver

    │     │     ├ Inc

    │     │     │  │ stm32l1xx_hal.h

    │     │     │  │ stm32l1xx_hal_cortex.h

    │     │     │  │ stm32l1xx_hal_def.h

    │     │     │  │ stm32l1xx_hal_dma.h

    │     │     │  │ stm32l1xx_hal_exti.h

    │     │     │  │ stm32l1xx_hal_flash.h

    │     │     │  │ stm32l1xx_hal_flash_ex.h

    │     │     │  │ stm32l1xx_hal_flash_ramfunc.h

    │     │     │  │ stm32l1xx_hal_gpio.h

    │     │     │  │ stm32l1xx_hal_gpio_ex.h

    │     │     │  │ stm32l1xx_hal_pwr.h

    │     │     │  │ stm32l1xx_hal_pwr_ex.h

    │     │     │  │ stm32l1xx_hal_rcc.h

    │     │     │  │ stm32l1xx_hal_rcc_ex.h

    │     │     │  │ stm32l1xx_hal_tim.h

    │     │     │  │ stm32l1xx_hal_tim_ex.h

    │     │     │  └ Legacy

    │     │     │     └ stm32_hal_legacy.h

    │     │     └ Src

    │     │        │ stm32l1xx_hal.c

    │     │        │ stm32l1xx_hal_cortex.c

    │     │        │ stm32l1xx_hal_dma.c

    │     │        │ stm32l1xx_hal_exti.c

    │     │        │ stm32l1xx_hal_flash.c

    │     │        │ stm32l1xx_hal_flash_ex.c

    │     │        │ stm32l1xx_hal_flash_ramfunc.c

    │     │        │ stm32l1xx_hal_gpio.c

    │     │        │ stm32l1xx_hal_pwr.c

    │     │        │ stm32l1xx_hal_pwr_ex.c

    │     │        │ stm32l1xx_hal_rcc.c

    │     │        │ stm32l1xx_hal_rcc_ex.c

    │     │        │ stm32l1xx_hal_tim.c

    │     │        └ stm32l1xx_hal_tim_ex.c

    │     └ MDK-ARM

    │        │ EventRecorderStub.scvd

    │        │ EXTI.uvguix.15212

    │        │ EXTI.uvoptx

    │        │ EXTI.uvprojx

    │        │ startup_stm32l151xba.s

    │        ├ DebugConfig

    │        │  └ EXTI_STM32L151C8xxA.dbgconf

    │        ├ EXTI

    │        │  └ EXTI.hex

    │        └ RTE

    │           └ _EXTI

    │              └ RTE_Components.h

    ├ 03_USART

    │  ├ USART

    │  │  │ .mxproject

    │  │  │ USART.ioc

    │  │  ├ Core

    │  │  │  ├ Inc

    │  │  │  │  │ gpio.h

    │  │  │  │  │ main.h

    │  │  │  │  │ stm32l1xx_hal_conf.h

    │  │  │  │  │ stm32l1xx_it.h

    │  │  │  │  └ usart.h

    │  │  │  └ Src

    │  │  │     │ gpio.c

    │  │  │     │ main.c

    │  │  │     │ stm32l1xx_hal_msp.c

    │  │  │     │ stm32l1xx_it.c

    │  │  │     │ system_stm32l1xx.c

    │  │  │     └ usart.c

    │  │  ├ Drivers

    │  │  │  ├ CMSIS

    │  │  │  │  ├ Device

    │  │  │  │  │  └ ST

    │  │  │  │  │     └ STM32L1xx

    │  │  │  │  │        └ Include

    │  │  │  │  │           │ stm32l151xba.h

    │  │  │  │  │           │ stm32l1xx.h

    │  │  │  │  │           └ system_stm32l1xx.h

    │  │  │  │  └ Include

    │  │  │  │     │ cmsis_armcc.h

    │  │  │  │     │ cmsis_armclang.h

    │  │  │  │     │ cmsis_compiler.h

    │  │  │  │     │ cmsis_gcc.h

    │  │  │  │     │ cmsis_iccarm.h

    │  │  │  │     │ cmsis_version.h

    │  │  │  │     │ core_armv8mbl.h

    │  │  │  │     │ core_armv8mml.h

    │  │  │  │     │ core_cm0.h

    │  │  │  │     │ core_cm0plus.h

    │  │  │  │     │ core_cm1.h

    │  │  │  │     │ core_cm23.h

    │  │  │  │     │ core_cm3.h

    │  │  │  │     │ core_cm33.h

    │  │  │  │     │ core_cm4.h

    │  │  │  │     │ core_cm7.h

    │  │  │  │     │ core_sc000.h

    │  │  │  │     │ core_sc300.h

    │  │  │  │     │ mpu_armv7.h

    │  │  │  │     │ mpu_armv8.h

    │  │  │  │     └ tz_context.h

    │  │  │  └ STM32L1xx_HAL_Driver

    │  │  │     ├ Inc

    │  │  │     │  │ stm32l1xx_hal.h

    │  │  │     │  │ stm32l1xx_hal_cortex.h

    │  │  │     │  │ stm32l1xx_hal_def.h

    │  │  │     │  │ stm32l1xx_hal_dma.h

    │  │  │     │  │ stm32l1xx_hal_exti.h

    │  │  │     │  │ stm32l1xx_hal_flash.h

    │  │  │     │  │ stm32l1xx_hal_flash_ex.h

    │  │  │     │  │ stm32l1xx_hal_flash_ramfunc.h

    │  │  │     │  │ stm32l1xx_hal_gpio.h

    │  │  │     │  │ stm32l1xx_hal_gpio_ex.h

    │  │  │     │  │ stm32l1xx_hal_pwr.h

    │  │  │     │  │ stm32l1xx_hal_pwr_ex.h

    │  │  │     │  │ stm32l1xx_hal_rcc.h

    │  │  │     │  │ stm32l1xx_hal_rcc_ex.h

    │  │  │     │  │ stm32l1xx_hal_tim.h

    │  │  │     │  │ stm32l1xx_hal_tim_ex.h

    │  │  │     │  │ stm32l1xx_hal_uart.h

    │  │  │     │  └ Legacy

    │  │  │     │     └ stm32_hal_legacy.h

    │  │  │     └ Src

    │  │  │        │ stm32l1xx_hal.c

    │  │  │        │ stm32l1xx_hal_cortex.c

    │  │  │        │ stm32l1xx_hal_dma.c

    │  │  │        │ stm32l1xx_hal_exti.c

    │  │  │        │ stm32l1xx_hal_flash.c

    │  │  │        │ stm32l1xx_hal_flash_ex.c

    │  │  │        │ stm32l1xx_hal_flash_ramfunc.c

    │  │  │        │ stm32l1xx_hal_gpio.c

    │  │  │        │ stm32l1xx_hal_pwr.c

    │  │  │        │ stm32l1xx_hal_pwr_ex.c

    │  │  │        │ stm32l1xx_hal_rcc.c

    │  │  │        │ stm32l1xx_hal_rcc_ex.c

    │  │  │        │ stm32l1xx_hal_tim.c

    │  │  │        │ stm32l1xx_hal_tim_ex.c

    │  │  │        └ stm32l1xx_hal_uart.c

    │  │  └ MDK-ARM

    │  │     │ EventRecorderStub.scvd

    │  │     │ startup_stm32l151xba.s

    │  │     │ USART.uvguix.15212

    │  │     │ USART.uvoptx

    │  │     │ USART.uvprojx

    │  │     ├ DebugConfig

    │  │     │  └ USART_STM32L151C8xxA.dbgconf

    │  │     ├ RTE

    │  │     │  └ _USART

    │  │     │     └ RTE_Components.h

    │  │     └ USART

    │  │        └ USART.hex

    │  └ USART_2

    │     │ .mxproject

    │     │ USART.ioc

    │     ├ Core

    │     │  ├ Inc

    │     │  │  │ gpio.h

    │     │  │  │ main.h

    │     │  │  │ stm32l1xx_hal_conf.h

    │     │  │  │ stm32l1xx_it.h

TAGSTM32CubeMX
  • 6 次
  • 1 分