Jan Breuer
2012-12-24 be752f9c9139f8d70d0296c6a9f49003071c8c3c
libscpi/src/debug.c
File was renamed from scpi/scpi_debug.c
@@ -35,7 +35,7 @@
 */
#include <stdio.h>
#include "scpi_debug.h"
#include "scpi/debug.h"
/**
 * Debug function: show current command and its parameters
@@ -43,9 +43,11 @@
 * @return 
 */
bool_t SCPI_DebugCommand(scpi_t * context) {
   size_t res;
   printf("**DEBUG: %s (\"", context->paramlist.cmd->pattern);
   fwrite(context->paramlist.parameters, 1, context->paramlist.length, stdout);
   res = fwrite(context->paramlist.parameters, 1, context->paramlist.length, stdout);
   (void)res;
   printf("\" - %ld)\r\n", context->paramlist.length);
   
   return TRUE;
}
}