-2

Eclipse 能够找到 iostream、stdio.h 和 conio.h

但它无法找到 Wprogram.h

我在带有 CDT 的 windows8 上使用 Indigo。我能够编译和运行一个 hello world 程序。我还链接了 AVR 目录。有谁知道为什么eclipse找不到头文件?

4

3 回答 3

1

谷歌搜索表明 Wprogram.h 已重命名为 Arduino.h。尝试包含该文件。

于 2012-12-21T21:07:50.950 回答
1

头文件不存在,或者其目录的路径不在包含路径中。检查项目 -> 属性 -> c/c++ 构建 -> 设置 -> 包含 -> 包含路径并确保 Wprogram.h 所在的文件夹包含在该列表中。

于 2012-12-21T20:16:55.243 回答
0

哪个文件导致导入旧的(而不存在的)文件通常并不明显Wprogram.h。因此扫描您最后导入的库(.h 和 .c)文件#Include "Wprogram.h"并替换为#Include "Arduino.h"

于 2016-09-30T08:29:40.397 回答