Fatal Error[Pe1696]:cannot open source file “sys.h”

STM32的IAR工程报错:

Fatal Error[Pe1696]: cannot open source file "sys.h" 

解决方法:

将#include "sys.h"改为:

#ifndef __SYS_H             
#define __SYS_H          
#endif 

猜你喜欢

转载自blog.csdn.net/weixin_38314865/article/details/106863211