mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
Add basic LEGIC RF communication in tag simulation mode
This commit is contained in:
parent
bb4d2cca76
commit
a7247d858b
6 changed files with 200 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
|||
#include <proxmark3.h>
|
||||
#include <stdlib.h>
|
||||
#include "apps.h"
|
||||
#include "legicrf.h"
|
||||
#ifdef WITH_LCD
|
||||
#include "fonts.h"
|
||||
#include "LCD.h"
|
||||
|
@ -583,11 +584,15 @@ void UsbPacketReceived(BYTE *packet, int len)
|
|||
case CMD_SIMULATE_TAG_ISO_14443:
|
||||
SimulateIso14443Tag();
|
||||
break;
|
||||
|
||||
|
||||
case CMD_SIMULATE_TAG_ISO_14443a:
|
||||
SimulateIso14443aTag(c->ext1, c->ext2); // ## Simulate iso14443a tag - pass tag type & UID
|
||||
break;
|
||||
|
||||
case CMD_SIMULATE_TAG_LEGIC_RF:
|
||||
LegicRfSimulate();
|
||||
break;
|
||||
|
||||
case CMD_MEASURE_ANTENNA_TUNING:
|
||||
MeasureAntennaTuning();
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue