- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将一个cpp文件添加到具有以下设置的arduino项目中...
project
--folder
--foo.h
--foo.cpp
--project.ino
#include "folder/foo.h
的顶部有一个
project.ino
。但是,尽管 header 提供了函数的原型(prototype),但函数定义在cpp文件中。当我尝试使用Arduino IDE编译代码时,它失败并显示错误
Undefined reference to 'bar()'
并且
bar()
位于
foo.cpp
中
sketch/import library
的设置(但是我有
sketch/include library
,但是没有看到任何类似于使用自定义文件夹位置的内容)
//project.ino
#include "folder/foo.h"
void setup() {
Serial.begin(9600);
}
void loop() {
bar();
}
//folder/foo.h
#include "Arduino.h"
void bar();
//folder/foo.cpp
#include "foo.h"
void bar() {
Serial.println("bar");
}
/tmp/ccNTRFfU.ltrans0.ltrans.o: In function `loop':
/home/temporary/project/project.ino:9: undefined reference to `bar()'
collect2: error: ld returned 1 exit status
exit status 1
#include "Arduino.h"
Serial.begin(9600);
最佳答案
如何在Arduino项目中正确包含C / C++ header 和源文件。
该答案已经过测试和编译,以确保其有效。 (已在Linux Ubuntu中使用Arduino 1.8.7 IDE完成)。
您有2个问题。
第1个: Arduino的异常生成过程(described here)不允许包含项目目录中该项目的.ino
文件所在的子文件夹。
[更新:当我在PC上复制您的代码时,这个错误可能只是我的一个错误,而不是您的错误:我不小心使用了foo.c
而不是foo.cpp
]
第二个: C++只能在C++源文件中使用,因此您必须将foo.c
更改为foo.cpp
,因为Serial.println()
是C++类(Serial
的)println()
方法的C++调用。
要修复1 ,只需更改文件夹结构以将所有内容都放在一个文件夹中:
project
├── foo.cpp
├── foo.hh
└── project.ino
foo.c
->
foo.cpp
和(可选,但建议,以显示为C++头文件)
foo.h
->
foo.hh
。现在也将.ino和.cpp文件中的包含也更新为
#include "foo.hh"
。
Compiling sketch...
/home/gabriel/Downloads/Install_Files/Arduino/arduino-1.8.7/hardware/tools/avr/bin/avr-gcc -c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10807 -DARDUINO_AVR_NANO -DARDUINO_ARCH_AVR -I/home/gabriel/Downloads/Install_Files/Arduino/arduino-1.8.7/hardware/arduino/avr/cores/arduino -I/home/gabriel/Downloads/Install_Files/Arduino/arduino-1.8.7/hardware/arduino/avr/variants/eightanaloginputs /tmp/arduino_build_233569/sketch/foo.c -o /tmp/arduino_build_233569/sketch/foo.c.o
/tmp/arduino_build_233569/sketch/foo.c: In function 'bar':
foo.c:9:5: error: 'Serial' undeclared (first use in this function)
Serial.println("bar");
^
/tmp/arduino_build_233569/sketch/foo.c:9:5: note: each undeclared identifier is reported only once for each function it appears in
exit status 1
'Serial' undeclared (first use in this function)
/tmp/arduino_build_233569/sketch/foo.c
,并且当时正在使用
avr-gcc
C编译器(而不是
avr-g++
C++编译器)。
/tmp/arduino_build_233569/sketch/foo.c
文件进行检查,并查找与之不同的任何东西。
Serial
的获取位置(问题出在我面前已经很明显了,但我还没有看到)。我发现以下内容:
"HardwareSerial.h"
。此头
extern
是
Serial
对象:
#if defined(UBRRH) || defined(UBRR0H)
extern HardwareSerial Serial;
#define HAVE_HWSERIAL0
#endif
Arduino.h
,您会发现,如果使用C++进行编译,则仅包含
HardwareSerial.h
:
#ifdef __cplusplus <========= This means that the following headers are ONLY included if you are compiling with C++! BOOM! That's when it hit me! You're compiling a C file with the C compiler to access a C++ object. That's not ok. Use the C++ compiler!
#include "WCharacter.h"
#include "WString.h"
#include "HardwareSerial.h"
#include "USBAPI.h"
#if defined(HAVE_HWSERIAL0) && defined(HAVE_CDCSERIAL)
#error "Targets with both UART0 and CDC serial not supported"
#endif
#ifdef __cplusplus
表示仅当您使用C++编译时,才包含上述 header !就在那时候打我!您正在使用C编译器编译C文件以访问C++对象。那不行您必须改为使用C++编译器。只需将
foo.c
更改为
foo.cpp
即可完成此操作。做完了
/home/gabriel/dev/Arduino/Sketches
。
/home/gabriel/dev/Arduino/Sketches/libraries
。现在,该文件夹中的所有内容都被视为Arduino“库”,并且可以包含在内。移动
foo.h
[在这种情况下,请勿使用
foo.hh
]和
foo.cpp
,如下所示:
/home/gabriel/dev/Arduino/Sketches/libraries/foo
├── foo.cpp
└── foo.h <==== NOT foo.hh in this case!
#include <foo.h>
foo.hh
的原因仅是因为Arduino仅在以这种方式使用菜单添加库包括时才在寻找
.h
文件。
就我而言,这是一个错误,应该向Arduino开发人员报告。 随时接受。
In recent versions of the Arduino IDE(including 1.6.10) if you want to include libraries from the sketch folder you need to put them in a src subfolder. For example:
Blink
|_Blink.ino
|_src
|_BlinkLib
|_BlinkLib.h
#include "src/BlinkLib/BlinkLib.h"
关于c++ - 如何将cpp文件添加到arduino项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55684371/
这个问题在这里已经有了答案: Why can templates only be implemented in the header file? (18 个答案) 关闭 7 年前。 我的 .hpp
我想使用 yaml-cpp 发出一个带引号的字符串,所以它看起来像 时间戳:“2011 年 8 月 10 日 01:37:52” 在输出yaml文件中。我该怎么做?谢谢。 最佳答案 YAML::Emi
我理解了模板的概念以及为什么我们需要在头文件中定义模板成员函数。另一种选择是在 cpp 文件中定义模板函数并显式实例化模板类,如下所示。 模板.h #include using namespace
是否可以发出和读取(解析)二进制数据(图像、文件等)?如下所示: http://yaml.org/type/binary.html我如何在 yaml-cpp 中执行此操作? 最佳答案 截至revisi
我尝试查找此内容并使用头文件等得到混合结果。 基本上我有多个 .cpp 文件,其中包含我为使用二叉树而制作的所有函数,BST , 链表等 我不想复制和粘贴我需要的函数,我只想能够做一个: #inclu
我正在发出一个 YAML 文档,如下所示: YAML::Node doc; // ...populate doc... YAML::Emitter out; out << doc; 在节点层次结构的某
这个问题在这里已经有了答案: Access extern variable in C++ from another file (1 个回答) 关闭 4 年前。 考虑以下场景: MyFile.cpp:
所以我在上基础编程课,我们正在学习如何将文件链接在一起。问题是我遇到了一个似乎没有人能够修复的错误。我已经去过我的教授、学生助理和校园里的编程辅助实验室,但运气不佳。 我还在这里搜索了至少 10 篇与
在下面的代码中,我在使用 parser.GetNextDocument(doc); 解析我的 .yaml 文件时遇到了一些问题。经过大量调试后,我发现这里的(主要)问题是我的 for 循环没有运行,因
我们有以下类(class)考试成绩:完成本类(class)的学生中有 75 人参加了考试。我们想知道学生在考试中的表现如何,并给出了 75 名学生的分数。我们想编写一个程序,按以下方式总结和分析结果:
主要.cpp #include #include #include #include "cootie.h" using namespace std; int main() { cout
试图制作电子鸡程序,但编译器抛出未定义的对“Tamagotchi::age()”错误的引用 理想情况下,这段代码会返回电子鸡的年龄,它应该在开始时由类的构造函数初始化为 0。 我显然在某个地方搞砸了,
我一直在开发一个使用 Microsoft Visual Studio 2010 命令提示符编译原始 .cpp 文件并分析其输出的应用程序。我遇到了很多麻烦,网上似乎没有太多关于这个的资料。这是麻烦的代
我试图从另一个 .cpp 文件调用 c++ 函数。我使用了 .h header 。看看下面我做了什么。 我有一个f.h文件: #ifndef PACKAGENAME_ADD_H #define PAC
我在 CPP 中有一个函数,其原型(prototype)如下: char* complexFunction(char* arg1, ...); 我使用 DLLImport 属性从 C# 导入它。问题是
也许这是一个幼稚的问题 - 但有没有办法构建/安装 yaml-cpp,以便在构建包含 yaml.h 的项目时不需要使用 Boost 库 header ? IE:我正在开发一个使用 yaml-cpp 结
我有一个在 .cpp 函数中声明的静态函数,我不能在 header 中声明它,因为它不应该是可见的。我想在同一项目的另一个 .cpp 中重新使用它。 这有可能吗? 最佳答案 这里有两个问题: 这可能吗
我正在使用 php-cpp 为我的 php 代码创建扩展,当我尝试编译 main.cpp 文件的简单结构时,我得到这个错误。这是编译错误: main.cpp:15:5: error: ‘PHPCPP_
我决定将必要的代码减少到显示此错误所需的最低限度。我有一个存在于 hc_list.h 文件中的 STL 列表包装器模板类。完整代码如下: // hc_list.h file #ifndef HC_LI
您好,我目前正在尝试通过 AMQPCPP 将 RabbitMQ 集成到我的 VisualStudio 项目中。我只能使用 Windows PC,这对安装来说是一件很痛苦的事情。我想我能够使用 CMAK
我是一名优秀的程序员,十分优秀!