mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
chg: unified download
This commit is contained in:
parent
baf6beec2e
commit
6f7d0dffdc
4 changed files with 5 additions and 5 deletions
|
@ -38,7 +38,7 @@ int CmdLFHitagList(const char *Cmd) {
|
|||
|
||||
// Query for the actual size of the trace
|
||||
UsbCommand response;
|
||||
if ( !GetFromBigBuf(got, USB_CMD_DATA_SIZE, 0, &response, 2500, false) ) {
|
||||
if ( !GetFromDevice(BIG_BUF, got, USB_CMD_DATA_SIZE, 0, &response, 2500, false) ) {
|
||||
PrintAndLogEx(WARNING, "command execution time out");
|
||||
free(got);
|
||||
return 2;
|
||||
|
@ -53,7 +53,7 @@ int CmdLFHitagList(const char *Cmd) {
|
|||
return 2;
|
||||
}
|
||||
got = p;
|
||||
if ( !GetFromBigBuf(got, traceLen, 0, NULL, 2500, false) ) {
|
||||
if ( !GetFromDevice(BIG_BUF, got, traceLen, 0, NULL, 2500, false) ) {
|
||||
PrintAndLogEx(WARNING, "command execution time out");
|
||||
free(got);
|
||||
return 2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue