Eclipse 能够找到 iostream、stdio.h 和 conio.h
但它无法找到 Wprogram.h
我在带有 CDT 的 windows8 上使用 Indigo。我能够编译和运行一个 hello world 程序。我还链接了 AVR 目录。有谁知道为什么eclipse找不到头文件?
谷歌搜索表明 Wprogram.h 已重命名为 Arduino.h。尝试包含该文件。
头文件不存在,或者其目录的路径不在包含路径中。检查项目 -> 属性 -> c/c++ 构建 -> 设置 -> 包含 -> 包含路径并确保 Wprogram.h 所在的文件夹包含在该列表中。
哪个文件导致导入旧的(而不存在的)文件通常并不明显Wprogram.h
。因此扫描您最后导入的库(.h 和 .c)文件#Include "Wprogram.h"
并替换为#Include "Arduino.h"