mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
hf felica litesim - now uses cliparser
This commit is contained in:
parent
db3719792b
commit
91b47eeb1f
4 changed files with 145 additions and 76 deletions
|
@ -1311,7 +1311,11 @@ static void PacketReceived(PacketCommandNG *packet) {
|
|||
break;
|
||||
}
|
||||
case CMD_HF_FELICALITE_SIMULATE: {
|
||||
felica_sim_lite(packet->oldarg[0]);
|
||||
struct p {
|
||||
uint8_t uid[8];
|
||||
} PACKED;
|
||||
struct p *payload = (struct p *) packet->data.asBytes;
|
||||
felica_sim_lite(payload->uid);
|
||||
break;
|
||||
}
|
||||
case CMD_HF_FELICA_SNIFF: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue