【E68】STM32F411 DRV8313无刷驱动SPWM控制

2021-08-13 21:45:18      索炜达电子      1103     

项目编号:E68

文件大小:542K

源码说明:带中文注释

开发环境:Keil

简要概述:

STM32F411 DRV8313无刷驱动SPWM控制

文件列表:

目录│文件列表:

 └ Stm32Motor

    │ .cproject

    │ .mxproject

    │ .project

    │ CMakeLists.txt

    │ CMakeLists_template.txt

    │ Motor.ioc

    │ Motor.xml

    │ STM32F411CEUx_FLASH.ld

    ├ .idea

    │  │ .gitignore

    │  │ misc.xml

    │  │ modules.xml

    │  │ Motor.iml

    │  │ vcs.xml

    │  └ runConfigurations

    │     └ OCD_Motor.xml

    ├ Core

    │  ├ Inc

    │  │  │ data.h

    │  │  │ gpio.h

    │  │  │ log.h

    │  │  │ main.h

    │  │  │ multi_timer.h

    │  │  │ pwm.h

    │  │  │ stm32f4xx_hal_conf.h

    │  │  │ stm32f4xx_it.h

    │  │  │ sys.h

    │  │  │ tim.h

    │  │  │ usart.h

    │  │  └ wifi.h

    │  └ Src

    │     │ data.c

    │     │ gpio.c

    │     │ log.c

    │     │ main.c

    │     │ multi_timer.c

    │     │ pwm.c

    │     │ stm32f4xx_hal_msp.c

    │     │ stm32f4xx_it.c

    │     │ sys.c

    │     │ syscalls.c

    │     │ system_stm32f4xx.c

    │     │ tim.c

    │     │ usart.c

    │     └ wifi.c

    ├ Drivers

    │  ├ CMSIS

    │  │  ├ Device

    │  │  │  └ ST

    │  │  │     └ STM32F4xx

    │  │  │        └ Include

    │  │  │           │ stm32f411xe.h

    │  │  │           │ stm32f4xx.h

    │  │  │           └ system_stm32f4xx.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

    │  └ STM32F4xx_HAL_Driver

    │     ├ Inc

    │     │  │ stm32f4xx_hal.h

    │     │  │ stm32f4xx_hal_cortex.h

    │     │  │ stm32f4xx_hal_def.h

    │     │  │ stm32f4xx_hal_dma.h

    │     │  │ stm32f4xx_hal_dma_ex.h

    │     │  │ stm32f4xx_hal_exti.h

    │     │  │ stm32f4xx_hal_flash.h

    │     │  │ stm32f4xx_hal_flash_ex.h

    │     │  │ stm32f4xx_hal_flash_ramfunc.h

    │     │  │ stm32f4xx_hal_gpio.h

    │     │  │ stm32f4xx_hal_gpio_ex.h

    │     │  │ stm32f4xx_hal_pwr.h

    │     │  │ stm32f4xx_hal_pwr_ex.h

    │     │  │ stm32f4xx_hal_rcc.h

    │     │  │ stm32f4xx_hal_rcc_ex.h

    │     │  │ stm32f4xx_hal_tim.h

    │     │  │ stm32f4xx_hal_tim_ex.h

    │     │  │ stm32f4xx_hal_uart.h

    │     │  └ Legacy

    │     │     └ stm32_hal_legacy.h

    │     └ Src

    │        │ stm32f4xx_hal.c

    │        │ stm32f4xx_hal_cortex.c

    │        │ stm32f4xx_hal_dma.c

    │        │ stm32f4xx_hal_dma_ex.c

    │        │ stm32f4xx_hal_exti.c

    │        │ stm32f4xx_hal_flash.c

    │        │ stm32f4xx_hal_flash_ex.c

    │        │ stm32f4xx_hal_flash_ramfunc.c

    │        │ stm32f4xx_hal_gpio.c

    │        │ stm32f4xx_hal_pwr.c

    │        │ stm32f4xx_hal_pwr_ex.c

    │        │ stm32f4xx_hal_rcc.c

    │        │ stm32f4xx_hal_rcc_ex.c

    │        │ stm32f4xx_hal_tim.c

    │        │ stm32f4xx_hal_tim_ex.c

    │        └ stm32f4xx_hal_uart.c

    └ startup

       └ startup_stm32f411xe.s

TAGDRV8313
  • 24 次
  • 1 分