1.新建工程文件夹,结构如下
2.复制路径STM32Cube_FW_F4_V1.28.0\Drivers\STM32F4xx_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.0\Drivers\CMSIS\Device\ST\STM32F4xx\Source\Templates\arm 下的文件startup_stm32f429xx.s
STM32Cube_FW_F4_V1.28.0\Drivers\CMSIS\Core\Include或(STM32Cube_FW_F4_V1.28.0\Drivers\CMSIS\Include)下的所有文件
STM32Cube_FW_F4_V1.28.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include下的
stm32f4xx.h、stm32f429xx.h、system_stm32f4xx.h
STM32Cube_FW_F4_V1.28.0\Projects\STM32F4-Discovery\Templates\src下的
system_stm32f4xx.c到Startup中
4.复制路径STM32Cube_FW_F4_V1.28.0\Projects\STM32F4-Discovery\Templates\Inc下的
main.h、stm32f4xx_it.h以及
STM32Cube_FW_F4_V1.28.0\Projects\STM32F4-Discovery\Templates\src下的
main.c、stm32f4xx_it.c到User中
添加文件和路径到工程,这里还需要添加两个宏定义,编译无误,至此新建工程完成