Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debug Macro Not working #5

Open
mrnams opened this issue May 13, 2023 · 0 comments
Open

Debug Macro Not working #5

mrnams opened this issue May 13, 2023 · 0 comments

Comments

@mrnams
Copy link

mrnams commented May 13, 2023

//I wrote simple program to test debug macros, but it gives me compilation error

//Program:
#include <Arduino.h>

#define DEBUG

#ifdef DEBUG
#define DPRINT(...) Serial.print(VA_ARGS)
#define DPRINTLN(...) Serial.println(VA_ARGS)
#else
// define blank line
#define DPRINT(...)
#define DPRINTLN(...)
#endif

void setup() {
// put your setup code here, to run once:
String str ="Hello MrNams";
DPRINT("Here is my string %s",str);
}

void loop() {
// put your main code here, to run repeatedly:
}

//Compilation Error:
src/main.cpp: In function 'void setup()':
src/main.cpp:7:50: error: no matching function for call to 'HardwareSerial::print(const char [21], String&)'
#define DPRINT(...) Serial.print(VA_ARGS)
^
src/main.cpp:19:3: note: in expansion of macro 'DPRINT'
DPRINT("Here is my string %s",str);
^~~~~~
In file included from C:/Users//.platformio/packages/framework-arduinoespressif32/cores/esp32/Stream.h:26,
from C:/Users//.platformio/packages/framework-arduinoespressif32/cores/esp32/Arduino.h:177,
from src/main.cpp:2:
C:/Users//.platformio/packages/framework-arduinoespressif32/cores/esp32/Print.h:81:12: note: candidate: 'size_t Print::print(const __FlashStringHelper*)'
size_t print(const __FlashStringHelper *);
^~~~~
C:/Users//.platformio/packages/framework-arduinoespressif32/cores/esp32/Print.h:81:12: note: candidate expects 1 argument, 2 provided
C:/Users//.platformio/packages/framework-arduinoespressif32/cores/esp32/Print.h:82:12: note: candidate: 'size_t Print::print(const String&)'
size_t print(const String &);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant