mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
t55xx readblock: don't delay acquisition too much else we're sometimes off by one (observed when reading P1B1 on several cards)
This commit is contained in:
parent
2080dd396d
commit
21b063da93
1 changed files with 1 additions and 1 deletions
|
@ -1529,7 +1529,7 @@ void T55xxReadBlock(uint16_t arg0, uint8_t Block, uint32_t Pwd) {
|
|||
// Turn field on to read the response
|
||||
// 137*8 seems to get to the start of data pretty well...
|
||||
// but we want to go past the start and let the repeating data settle in...
|
||||
TurnReadLFOn(200 * 8);
|
||||
TurnReadLFOn(150 * 8);
|
||||
|
||||
// Acquisition
|
||||
// Now do the acquisition
|
||||
|
|
Loading…
Reference in a new issue