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 41e2392 commit 3640d4dCopy full SHA for 3640d4d
src/AIoTC_Config.h
@@ -31,11 +31,24 @@
31
#endif
32
33
#if defined(ARDUINO_AVR_UNO_WIFI_REV2)
34
-#define DEBUG_ERROR
35
-#define DEBUG_WARNING
36
-#define DEBUG_INFO
37
-#define DEBUG_DEBUG
38
-#define DEBUG_VERBOSE
+/* Define debug macros which effectively removes them from the
+ * the codebase for Arduino Uno WiFi. Rev. 2.
+ */
+# define DEBUG_ERROR
+# define DEBUG_WARNING
39
+# define DEBUG_INFO
40
+# define DEBUG_DEBUG
41
+# define DEBUG_VERBOSE
42
+/* Provide defines for constants provided within Arduino_DebugUtils
43
+ * in order to allow older sketches using those constants to still
44
+ * compile.
45
46
+# define DBG_NONE -1
47
+# define DBG_ERROR 0
48
+# define DBG_WARNING 1
49
+# define DBG_INFO 2
50
+# define DBG_DEBUG 3
51
+# define DBG_VERBOSE 4
52
53
54
#ifndef DEBUG_ERROR
0 commit comments