mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-22 22:33:48 -07:00
hitags sim: apply correct coding after select(uid)
This commit is contained in:
parent
5848b31ee1
commit
416049ccc9
1 changed files with 14 additions and 0 deletions
|
@ -526,6 +526,20 @@ static void hts_handle_reader_command(uint8_t *rx, const size_t rxlen,
|
||||||
|
|
||||||
tx[4] = crc;
|
tx[4] = crc;
|
||||||
}
|
}
|
||||||
|
switch (tag.mode) {
|
||||||
|
case HT_STANDARD:
|
||||||
|
case HT_ADVANCED: {
|
||||||
|
m = MC4K;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case HT_FAST_ADVANCED: {
|
||||||
|
m = MC8K;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default: {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue