@@ -97,24 +97,24 @@ extern Arduino_DebugUtils Debug;
97
97
* DEFINE
98
98
**************************************************************************************/
99
99
100
- #ifndef DBG_ERROR
101
- # define DBG_ERROR (fmt, ...) Debug.print(DBG_ERROR, fmt, ## __VA_ARGS__)
100
+ #ifndef DEBUG_ERROR
101
+ # define DEBUG_ERROR (fmt, ...) Debug.print(DBG_ERROR, fmt, ## __VA_ARGS__)
102
102
#endif
103
103
104
- #ifndef DBG_WARNING
105
- # define DBG_WARNING (fmt, ...) Debug.print(DBG_WARNING, fmt, ## __VA_ARGS__)
104
+ #ifndef DEBUG_WARNING
105
+ # define DEBUG_WARNING (fmt, ...) Debug.print(DBG_WARNING, fmt, ## __VA_ARGS__)
106
106
#endif
107
107
108
- #ifndef DBG_INFO
109
- # define DBG_INFO (fmt, ...) Debug.print(DBG_INFO, fmt, ## __VA_ARGS__)
108
+ #ifndef DEBUG_INFO
109
+ # define DEBUG_INFO (fmt, ...) Debug.print(DBG_INFO, fmt, ## __VA_ARGS__)
110
110
#endif
111
111
112
- #ifndef DBG_DEBUG
113
- # define DBG_DEBUG (fmt, ...) Debug.print(DBG_DEBUG, fmt, ## __VA_ARGS__)
112
+ #ifndef DEBUG_DEBUG
113
+ # define DEBUG_DEBUG (fmt, ...) Debug.print(DBG_DEBUG, fmt, ## __VA_ARGS__)
114
114
#endif
115
115
116
- #ifndef DBG_VERBOSE
117
- # define DBG_VERBOSE (fmt, ...) Debug.print(DBG_VERBOSE, fmt, ## __VA_ARGS__)
116
+ #ifndef DEBUG_VERBOSE
117
+ # define DEBUG_VERBOSE (fmt, ...) Debug.print(DBG_VERBOSE, fmt, ## __VA_ARGS__)
118
118
#endif
119
119
120
120
#endif /* ARDUINO_DEBUG_UTILS_H_ */
0 commit comments