From e951e350dfc13cbe16f8be59fdf3861103f2e405 Mon Sep 17 00:00:00 2001 From: Mariano Alvira Date: Sat, 12 Feb 2011 15:34:21 -0500 Subject: [PATCH] print status messages with DEBUG_MACA --- lib/maca.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/maca.c b/lib/maca.c index e4c4039f9..513e855eb 100644 --- a/lib/maca.c +++ b/lib/maca.c @@ -542,21 +542,21 @@ void decode_status(void) { { case ABORTED: { -// PRINTF("maca: aborted\n\r"); + PRINTF("maca: aborted\n\r"); ResumeMACASync(); break; } case NOT_COMPLETED: { -// PRINTF("maca: not completed\n\r"); + PRINTF("maca: not completed\n\r"); ResumeMACASync(); break; } case CODE_TIMEOUT: { -// PRINTF("maca: timeout\n\r"); + PRINTF("maca: timeout\n\r"); ResumeMACASync(); break; @@ -570,7 +570,7 @@ void decode_status(void) { } case EXT_TIMEOUT: { -// PRINTF("maca: ext timeout\n\r"); + PRINTF("maca: ext timeout\n\r"); ResumeMACASync(); break;