mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
hf legic sim -> text, use NG, report back
This commit is contained in:
parent
9d86185287
commit
718e6d2ce8
4 changed files with 76 additions and 18 deletions
|
@ -1065,7 +1065,12 @@ static void PacketReceived(PacketCommandNG *packet) {
|
|||
|
||||
#ifdef WITH_LEGICRF
|
||||
case CMD_HF_LEGIC_SIMULATE: {
|
||||
LegicRfSimulate(packet->oldarg[0]);
|
||||
struct p {
|
||||
uint8_t tagtype;
|
||||
bool send_reply;
|
||||
} PACKED;
|
||||
struct p *payload = (struct p *) packet->data.asBytes;
|
||||
LegicRfSimulate(payload->tagtype, payload->send_reply);
|
||||
break;
|
||||
}
|
||||
case CMD_HF_LEGIC_WRITER: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue