X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/f0fa6638141409674b64481557aba051935b1685..4409bf6ef3e89f6f55ab8028ba56afa98fd32a42:/client/cmdhflegic.c diff --git a/client/cmdhflegic.c b/client/cmdhflegic.c index 50c2976f..1b323796 100644 --- a/client/cmdhflegic.c +++ b/client/cmdhflegic.c @@ -732,7 +732,7 @@ int CmdLegicRfWrite(const char *Cmd) { clearCommandBuffer(); SendCommand(&c); UsbCommand resp; - if (!WaitForResponseTimeout(CMD_ACK, &resp, 2000)) { + if (!WaitForResponseTimeout(CMD_ACK, &resp, 4000)) { PrintAndLog("command execution time out"); return 1; } @@ -1158,7 +1158,7 @@ static command_t CommandTable[] = { {"save", CmdLegicSave, 0, " [] -- Store samples"}, {"load", CmdLegicLoad, 0, " -- Restore samples"}, {"sim", CmdLegicRfSim, 0, "[phase drift [frame drift [req/resp drift]]] Start tag simulator (use after load or read)"}, - {"write", CmdLegicRfWrite, 0, " -- Write sample buffer (user after load or read)"}, + {"write", CmdLegicRfWrite, 0, "Write data to tag"}, {"crc", CmdLegicCalcCrc, 1, "Calculate Legic CRC over given hexbytes"}, {"eload", CmdLegicELoad, 1, "Load binary dump to emulator memory"}, {"esave", CmdLegicESave, 1, "Save emulator memory to binary file"},