mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
fast mode on LF techs using t55xx write block
This commit is contained in:
parent
962f45e3e6
commit
d088ed4232
10 changed files with 63 additions and 4 deletions
|
@ -234,7 +234,13 @@ static int CmdPyramidClone(const char *Cmd) {
|
|||
|
||||
PacketResponseNG resp;
|
||||
|
||||
for (uint8_t i = 0; i < 5; ++i) {
|
||||
// fast push mode
|
||||
conn.block_after_ACK = true;
|
||||
for (uint8_t i = 0; i < 5; i++) {
|
||||
if (i == 4) {
|
||||
// Disable fast mode on last packet
|
||||
conn.block_after_ACK = false;
|
||||
}
|
||||
clearCommandBuffer();
|
||||
SendCommandMIX(CMD_T55XX_WRITE_BLOCK, blocks[i], i, 0, NULL, 0);
|
||||
if (!WaitForResponseTimeout(CMD_ACK, &resp, T55XX_WRITE_TIMEOUT)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue