biblioteca que serve como midleware para as diversas placas que podem implementar esse padrão !

Dependents:   sgam_mdw_test

Revision:
4:17005b72a3d8
Parent:
3:c87e6b48834e
--- a/sgam_mdw.h	Sat Jun 22 11:59:31 2019 -0300
+++ b/sgam_mdw.h	Sun Jun 23 13:21:02 2019 -0300
@@ -18,6 +18,10 @@
 
 #include "Control.h"
 
-#define LOG(args...)   // printf(args)  
+#ifdef DEBUG_SGAM
+    #define D_LOG(args...)   printf(args)  
+#else
+    #define D_LOG(args...)   // printf(args)  
+#endif
 
 #endif