Add basic LEGIC RF communication in tag simulation mode

This commit is contained in:
henryk@ploetzli.ch 2009-10-12 11:47:39 +00:00
commit a7247d858b
6 changed files with 200 additions and 1 deletions

View file

@ -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;