We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d46541 commit bdec0c5Copy full SHA for bdec0c5
src/ConsoleLogger.h
@@ -22,6 +22,8 @@
22
#define LOG(...) ESP_LOGD("ESP_VS1053", __VA_ARGS__)
23
#elif defined(ARDUINO_ARCH_ESP8266) && defined(DEBUG_ESP_PORT)
24
#define LOG(...) DEBUG_ESP_PORT.printf(__VA_ARGS__)
25
+ #elif defined(ARDUINO_ARCH_RP2040) && defined(DEBUG_RP2040_PORT) && defined(DEBUG_VS1053)
26
+ #define LOG(...) DEBUG_RP2040_PORT.printf(__VA_ARGS__)
27
#else
28
#define LOG(...)
29
#endif
0 commit comments