With error debug.h

Fork of SX1272Lib by Semtech

Revision:
8:2d0e326f24dc
Parent:
0:45c4f0364ca4
--- a/debug/debug.h	Mon Apr 24 09:26:08 2017 +0000
+++ b/debug/debug.h	Thu Sep 21 23:17:41 2017 +0000
@@ -30,7 +30,7 @@
  * 
  * @param format printf-style format string, followed by variables
  */
-static inline void debug(const char *format, ...) {
+static inline void debug2(const char *format, ...) {
     va_list args;
     va_start(args, format);
     vfprintf(stderr, format, args);
@@ -53,8 +53,8 @@
 
 #else
 
-static inline void debug(const char *format, ...) {}
-static inline void debug(bool condition, const char *format, ...) {}
+//static inline void debug(const char *format, ...) {}
+//static inline void debug(bool condition, const char *format, ...) {}
 
 #endif