1272 Library for Ping Pong Example

Dependents:   SX1272PingPong

Fork of SX1272Lib by Semtech

Revision:
8:e6c6e12b0a9e
Parent:
0:45c4f0364ca4
diff -r b988b60083a1 -r e6c6e12b0a9e debug/debug.h
--- a/debug/debug.h	Mon Apr 24 09:26:08 2017 +0000
+++ b/debug/debug.h	Mon Nov 13 23:18:21 2017 +0000
@@ -30,12 +30,13 @@
  * 
  * @param format printf-style format string, followed by variables
  */
+ /*
 static inline void debug(const char *format, ...) {
     va_list args;
     va_start(args, format);
     vfprintf(stderr, format, args);
     va_end(args);
-}
+}*/
 
 /** Conditionally output a debug message
  *