mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
MIX, also removeed returning mem, since its not used. We use downloadEMbuffer instead
This commit is contained in:
parent
a086754279
commit
a42a817ff3
1 changed files with 3 additions and 3 deletions
|
@ -438,7 +438,7 @@ void LegicRfInfo(void) {
|
|||
}
|
||||
|
||||
// OK
|
||||
reply_old(CMD_ACK, 1, 0, 0, (uint8_t *)&card, sizeof(legic_card_select_t));
|
||||
reply_mix(CMD_ACK, 1, 0, 0, (uint8_t *)&card, sizeof(legic_card_select_t));
|
||||
|
||||
OUT:
|
||||
switch_off();
|
||||
|
@ -513,7 +513,7 @@ void LegicRfReader(uint16_t offset, uint16_t len, uint8_t iv) {
|
|||
}
|
||||
|
||||
// OK
|
||||
reply_old(CMD_ACK, 1, len, 0, legic_mem, len);
|
||||
reply_mix(CMD_ACK, 1, len, 0, 0, 0);
|
||||
|
||||
OUT:
|
||||
switch_off();
|
||||
|
@ -552,7 +552,7 @@ void LegicRfWriter(uint16_t offset, uint16_t len, uint8_t iv, uint8_t *data) {
|
|||
}
|
||||
|
||||
// OK
|
||||
reply_old(CMD_ACK, 1, len, 0, legic_mem, len);
|
||||
reply_mix(CMD_ACK, 1, len, 0, 0, 0);
|
||||
|
||||
OUT:
|
||||
switch_off();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue