mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
Implement hf 15 eload
command to move image dump to emulator.
This commit is contained in:
parent
f3a41fdc4e
commit
03fa757395
5 changed files with 143 additions and 0 deletions
|
@ -1256,6 +1256,20 @@ static void PacketReceived(PacketCommandNG *packet) {
|
|||
ReaderIso15693(NULL);
|
||||
break;
|
||||
}
|
||||
case CMD_HF_ISO15693_EML_CLEAR: {
|
||||
EmlClearIso15693();
|
||||
break;
|
||||
}
|
||||
case CMD_HF_ISO15693_EML_SETMEM: {
|
||||
struct p {
|
||||
uint32_t offset;
|
||||
uint8_t count;
|
||||
uint8_t data[];
|
||||
} PACKED;
|
||||
struct p *payload = (struct p *) packet->data.asBytes;
|
||||
EmlSetMemIso15693(payload->count, payload->data, payload->offset);
|
||||
break;
|
||||
}
|
||||
case CMD_HF_ISO15693_SIMULATE: {
|
||||
struct p {
|
||||
uint8_t uid[8];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue