]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - tmk_core/common/action_macro.c
Remove more commented out MCUs
[qmk_firmware.git] / tmk_core / common / action_macro.c
index cc78c82327917667f3efff059dd8c28877b070cc..12bef295861ee64c6021015ac66ea2c9f5c431e4 100644 (file)
@@ -19,16 +19,20 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #include "action_macro.h"
 #include "wait.h"
 
-//#ifdef DEBUG_ACTION
+#ifdef DEBUG_ACTION
 #include "debug.h"
-//#else
-//#include "nodebug.h"
-//#endif
+#else
+#include "nodebug.h"
+#endif
 
 
 #ifndef NO_ACTION_MACRO
 
 #define MACRO_READ()  (macro = MACRO_GET(macro_p++))
+/** \brief Action Macro Play
+ *
+ * FIXME: Needs doc
+ */
 void action_macro_play(const macro_t *macro_p)
 {
     macro_t macro = END;