我有这个简单的blink示例,修改为声明一个类,其唯一的方法签名与延迟库函数的签名相匹配。除非我重命名该方法,否则它会崩溃Arduino。我看到Arduino.h标头有" extern C"链接说明符,所以不应该有任何名称冲突。 你能帮我理解这个错误吗?
问候。
class Wrapper
{
public:
void delay(unsigned long t)
{
delay (t);
}
};
Wrapper wr;
Wrapper* wrp = ≀
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin 13 as an output.
pinMode(13, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
wrp->delay(1000); // wait for a second
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
wrp->delay(1000); // wait for a second
}
答案 0 :(得分:1)
列出的代码存在堆栈溢出问题。在Wrapper::delay(unsigned long)
内,delay(t)
再次调用Wrapper::delay
而不是Arduino delay()
routine。
如果你想在delay()
内调用Arduino Wrapper::delay
例程,你需要像这样调用这个调用:
class Wrapper
{
public:
void delay(unsigned long t)
{
::delay(t);
}
};