HAL库新建工程(STM32F429IGT6)

1.新建工程文件夹,结构如下

2.复制路径STM32Cube_FW_F4_V1.28.0DriversSTM32F4xx_HAL_Driver下的src以及Inc文件到Library中

记得修改Inc中的stm32f4xx_hal_conf_template.h文件为stm32f4xx_hal_conf.h

Src目录下有三个文件:

stm32f4xx_hal_timebase_rtc_alarm_template.c

stm32f4xx_hal_timebase_rtc_wakeup_template.c

stm32f4xx_hal_timebase_tim_template.c

可以删除掉或者在工程中暂时不添加这三个文件

3.复制路径STM32Cube_FW_F4_V1.28.0DriversCMSISDeviceSTSTM32F4xxSourceTemplatesarm 下的文件startup_stm32f407xx.s

STM32Cube_FW_F4_V1.28.0DriversCMSISCoreInclude或(STM32Cube_FW_F4_V1.28.0DriversCMSISInclude)下的所有文件

STM32Cube_FW_F4_V1.28.0DriversCMSISDeviceSTSTM32F4xxInclude下的

stm32f4xx.h、stm32f429xx.h、system_stm32f4xx.h

STM32Cube_FW_F4_V1.28.0ProjectsSTM32F4-DiscoveryTemplatessrc下的

system_stm32f4xx.c到Startup中

4.复制路径STM32Cube_FW_F4_V1.28.0ProjectsSTM32F4-DiscoveryTemplatesInc下的

main.h、stm32f4xx_it.h以及

STM32Cube_FW_F4_V1.28.0ProjectsSTM32F4-DiscoveryTemplatessrc下的

main.c、stm32f4xx_it.c到User中

添加文件和路径到工程,这里还需要添加两个宏定义,编译无误,至此新建工程完成