赞
踩
之前用的好好的,突然发现结构体成员只要是stdint.h中的类型就无法提示,比如uint8_t, uint32_t等,如果是int,char等就可以,说明stdint.h解析出现问题,但是编译能通过。
修改core_cm3.h,将#include <stdint.h>注释掉,并在其下一行添加如下:
#ifndef _MSC_VER / fix uint32_t for VS2013 /
#include <stdint.h>
#endif
我的问题上述方案无效。
生效的是这种方法:
intellisense配置中的系统include路径之前是keil下的目录,后来keil被卸载,就无法生效,因此解析stdint.h出现问题。改为gcc编译器包含stdint.h的文件夹目录即可。
不知道标准库位置的可以全局搜索stdint.h,最好是编译器下的文件夹,包含比较全面。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。