X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/890ae3dd439e4ff5fab19414a1b8d632d2ec01b9..beb2ce1f2dd06501d2bc914d8b19a3ea65c02e8f:/client/cmdlfpyramid.c diff --git a/client/cmdlfpyramid.c b/client/cmdlfpyramid.c index cf8b2b44..b6c8ed6a 100644 --- a/client/cmdlfpyramid.c +++ b/client/cmdlfpyramid.c @@ -74,7 +74,7 @@ int GetPyramidBits(uint32_t fc, uint32_t cn, uint8_t *pyramidBits) { int CmdPyramidRead(const char *Cmd) { CmdLFRead("s"); - getSamples("30000",false); + getSamples("12000", TRUE); return CmdFSKdemodPyramid(""); } @@ -115,7 +115,7 @@ int CmdPyramidClone(const char *Cmd) { PrintAndLog("Blk | Data "); PrintAndLog("----+------------"); for ( i = 0; i<5; ++i ) - PrintAndLog(" %02d | %08" PRIx32, i, blocks[i]); + PrintAndLog(" %02d | 0x%08" PRIx32, i, blocks[i]); UsbCommand resp; UsbCommand c = {CMD_T55XX_WRITE_BLOCK, {0,0,0}}; @@ -125,7 +125,7 @@ int CmdPyramidClone(const char *Cmd) { c.arg[1] = i; clearCommandBuffer(); SendCommand(&c); - if (!WaitForResponseTimeout(CMD_ACK, &resp, 1000)){ + if (!WaitForResponseTimeout(CMD_ACK, &resp, T55XX_WRITE_TIMEOUT)){ PrintAndLog("Error occurred, device did not respond during write operation."); return -1; }