We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c0dde0 commit a65d380Copy full SHA for a65d380
src/AudioTools/CoreAudio/AudioRuntime.h
@@ -49,6 +49,12 @@ inline void printNChar(char ch, int n){
49
Serial.println();
50
}
51
52
+#ifndef ESP_ARDUINO_VERSION_STR
53
+# define df2xstr(s) #s
54
+# define df2str(s) df2xstr(s)
55
+# define ESP_ARDUINO_VERSION_STR df2str(ESP_ARDUINO_VERSION_MAJOR) "." df2str(ESP_ARDUINO_VERSION_MINOR) "." df2str(ESP_ARDUINO_VERSION_PATCH)
56
+#endif
57
+
58
/// prints the available version information
59
inline void printVersionInfo() {
60
printNChar('*',50);
0 commit comments