#error "please select first the target stm32f10x device used in your application (in stm32f10x.h file)"
时间: 2023-06-05 11:47:05 浏览: 3482
stm32f10x.h
错误:“请先在您的应用程序中选择目标stm32f10x设备(在stm32f10x.h文件中)”
这个错误提示是在编译STM32F10x程序时出现的,意思是在编译过程中没有选择目标设备。需要在代码中指定使用的STM32F10x芯片型号,通常是在stm32f10x.h文件中进行设置。如果没有正确设置,编译器就无法识别使用的芯片型号,从而导致编译错误。因此,需要根据实际使用的芯片型号进行设置,才能顺利编译通过。
阅读全文