mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
CHG: lowered the number of bytes collected for T55xxReadBlock. Was 12000 -> 7679
CHG: added some documentation about what arguments does. CHG: 'data tune' - added flush after printf.
This commit is contained in:
parent
aed36ae5bd
commit
81b7e89434
6 changed files with 23 additions and 8 deletions
|
@ -1274,7 +1274,8 @@ int AquireData( uint8_t page, uint8_t block, bool pwdmode, uint32_t password ){
|
|||
return 0;
|
||||
}
|
||||
|
||||
uint8_t got[12288];
|
||||
//uint8_t got[12288];
|
||||
uint8_t got[7679];
|
||||
GetFromBigBuf(got, sizeof(got), 0);
|
||||
if ( !WaitForResponseTimeout(CMD_ACK, NULL, 8000) ) {
|
||||
PrintAndLog("command execution time out");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue