X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/b828a4e16818697605d57f2600cbb815c5ce5e7e..4401050bcc877a9f1137dc6241f0895d0ca09d98:/client/cmdlfcotag.c diff --git a/client/cmdlfcotag.c b/client/cmdlfcotag.c index 11be2db8..5e3f28b6 100644 --- a/client/cmdlfcotag.c +++ b/client/cmdlfcotag.c @@ -15,15 +15,16 @@ int CmdCOTAGRead(const char *Cmd) { // if (Cmd[0] == 'h' || Cmd[0] == 'H') return usage_lf_cotag_read(); + CmdLFSetConfig("q 89"); + UsbCommand c = {CMD_COTAG, {0, 0, 0}}; clearCommandBuffer(); SendCommand(&c); if ( !WaitForResponseTimeout(CMD_ACK, NULL, 2500) ) { - //PrintAndLog("command execution time out"); + PrintAndLog("command execution time out"); return 1; } getSamples("", true); - //return CmdFSKdemodAWID(Cmd); return 0; }