mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
chf: lf asksim - uses NG
This commit is contained in:
parent
98b75e43a5
commit
e727fe5818
14 changed files with 162 additions and 62 deletions
|
@ -787,9 +787,11 @@ static void PacketReceived(PacketCommandNG *packet) {
|
|||
CmdFSKsimTAG(payload->fchigh, payload->fclow, payload->separator, payload->clock, packet->length - sizeof(lf_fsksim_t), payload->data, 1);
|
||||
break;
|
||||
}
|
||||
case CMD_ASK_SIM_TAG:
|
||||
CmdASKsimTag(packet->oldarg[0], packet->oldarg[1], packet->oldarg[2], packet->data.asBytes, 1);
|
||||
case CMD_ASK_SIM_TAG: {
|
||||
lf_asksim_t *payload = (lf_asksim_t *)packet->data.asBytes;
|
||||
CmdASKsimTAG(payload->encoding, payload->invert, payload->separator, payload->clock, packet->length - sizeof(lf_asksim_t), payload->data, 1);
|
||||
break;
|
||||
}
|
||||
case CMD_PSK_SIM_TAG:
|
||||
CmdPSKsimTag(packet->oldarg[0], packet->oldarg[1], packet->oldarg[2], packet->data.asBytes, 1);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue