我正在使用PlatformIO,目前正在为ESP32开发代码。我有一些子库,希望在其中进行调试日志记录。
要启用调试日志,我认为最好在main.cpp中通过#define MYDEBUG
设置一个常量,然后在包含的库中对其进行求值。我将代码分解为以下简单示例:
main.cpp:
#include <Arduino.h>
#define MYDEBUG
#include "LedSetup.h"
void setup()
{
Serial.begin(9600);
LedSetup::doSomething();
Serial.println("Is there output?");
}
void loop()
{
}
LedSetup.h:
#ifndef LedSetup_h_
#define LedSetup_h_
#include <Arduino.h>
class LedSetup
{
public:
static void doSomething();
private:
static void logDebug(String message)
{
#ifdef MYDEBUG
Serial.print("LedSetup: ");
Serial.println(message);
#endif
}
};
#endif
LedSetup.cpp:
#include "LedSetup.h"
void LedSetup::doSomething()
{
logDebug("Did something!");
}
运行此命令时,我希望在串行日志中看到两行:
Did something!
和Is there output?
但是我只看到Is there output
。因此显然MYDEBUG
的定义在包含的头文件中不可用。为什么?
在使用#define作为在包含的头文件中进行设置的一种方式之前,我已经看到了类似的东西,例如: https://github.com/FastLED/FastLED/wiki/ESP8266-notes
我在这里监督什么?
预先感谢, 蒂莫
答案 0 :(得分:1)
您在MYDEBUG
中对main.cpp
的定义只会影响main.cpp
之后的#define
中的代码。您编译的任何其他文件都不可见。
要做的最好的方法是将定义添加到platformio.ini
文件中。
尝试在项目的部分中添加类似于以下内容的行:
build_flags = -DMYDEBUG
如果您需要将MYDEBUG
设置为特定值,则可以将其写为:
build_flags = -DMYDEBUG=23
这将告诉编译器为其编译的每个文件定义常量MYDEBUG
。