X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/051643995984009593bcb8180ff9f9d570af7df5..1f3d5401a6627d0cd3dcecc54cd058e9bd8a5e9d:/client/cmdmain.c diff --git a/client/cmdmain.c b/client/cmdmain.c index 790a0c37..583bafca 100644 --- a/client/cmdmain.c +++ b/client/cmdmain.c @@ -185,7 +185,15 @@ void UsbCommandReceived(UsbCommand *UC) memset(s, 0x00, sizeof(s)); size_t len = MIN(UC->arg[0],USB_CMD_DATA_SIZE); memcpy(s, UC->d.asBytes, len); - PrintAndLog("#db# %s", s); + + // test + if ( UC->arg[1] == CMD_MEASURE_ANTENNA_TUNING_HF) { + printf("\r#db# %s", s); + fflush(stdout); + } + else + PrintAndLog("#db# %s", s); + return; } break;