X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/72e930ef3206224ae0ff0696a8a146a0b26268f7..c2d25819d8c55b568814da61d116fda9b4ad53d1:/client/cmddata.c diff --git a/client/cmddata.c b/client/cmddata.c index e7be9884..f5b9fc9c 100644 --- a/client/cmddata.c +++ b/client/cmddata.c @@ -464,8 +464,8 @@ int CmdSamples(const char *Cmd) if (n == 0) n = 512; if (n > sizeof(got)) n = sizeof(got); - PrintAndLog("Reading %d samples\n", n); - GetFromBigBuf(got,n,0); + PrintAndLog("Reading %d samples from device memory\n", n); + GetFromBigBuf(got,n,3560); WaitForResponse(CMD_ACK,NULL); for (int j = 0; j < n; j++) { GraphBuffer[cnt++] = ((int)got[j]) - 128;