STM32Cube_FW_F4_V1.16.0固件库文件配置

Posted 编程自学日志

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了STM32Cube_FW_F4_V1.16.0固件库文件配置相关的知识,希望对你有一定的参考价值。

启动文件:
STM32Cube_FW_F4_V1.16.0\Drivers\CMSIS\Device\ST\STM32F4xx\Source\Templates\arm\startup_stm32f429xx.s

外设寄存器定义文件
STM32Cube_FW_F4_V1.16.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f429xx.h

系统初始化文件
STM32Cube_FW_F4_V1.16.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
STM32Cube_FW_F4_V1.16.0\Drivers\CMSIS\Device\ST\STM32F4xx\Source\Templates\system_stm32f4xx.c

外设固件库文件:
STM32Cube_FW_F4_V1.16.0\Drivers\STM32F4xx_HAL_Driver\Inc\*.h
STM32Cube_FW_F4_V1.16.0\Drivers\STM32F4xx_HAL_Driver\Src\*.c
(注:旧版的misc.h/.c没有了,替换成了stm32f4xx_hal_cortex.h/.c。)

内核文件:
STM32Cube_FW_F4_V1.16.0\Drivers\CMSIS\Include\core_cm4.h
STM32Cube_FW_F4_V1.16.0\Drivers\CMSIS\Include\core_cmFunc.h
STM32Cube_FW_F4_V1.16.0\Drivers\CMSIS\Include\core_cmInstr.h
STM32Cube_FW_F4_V1.16.0\Drivers\CMSIS\Include\core_cmSimd.h

用户文件:
main.h/.c
stm32f4xx_it.h/.c
(注:自己添加用户文件。)




以上是关于STM32Cube_FW_F4_V1.16.0固件库文件配置的主要内容,如果未能解决你的问题,请参考以下文章

STM32Cube_FW_F7 SSL 客户端 mbedTLS FATAL_ALERT

STM32Cube_FW_F7 客户端 mbedTLS SSL 握手失败并显示 FATAL_ALERT

STM32-固件库

浅析STM32之usbh_def.H

STM32F1固件库详解

STM32 CubeMX 学习:001-GPIO的使用