没有定义SystemInit
需要在main.c定义这个函数
void SystemInit(){}int main(){}
提示没有stm32f10x.o
需要#include “stm32f10x.h”添加头文件
又提示
D:/keil/pack/Keil/STM32F1xx_DFP/1.0.5/Device/Includestm32f10x.h(478): error: ‘core_cm3.h’ file not found
添加含有这个头文件的路径
没有定义SystemInit
需要在main.c定义这个函数
void SystemInit(){}int main(){}
提示没有stm32f10x.o
需要#include “stm32f10x.h”添加头文件
又提示
D:/keil/pack/Keil/STM32F1xx_DFP/1.0.5/Device/Includestm32f10x.h(478): error: ‘core_cm3.h’ file not found
添加含有这个头文件的路径
举报