mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
added EM4x50 info function
This commit is contained in:
parent
ffec9d5a18
commit
1fe83eaf25
1 changed files with 13 additions and 0 deletions
|
@ -29,6 +29,7 @@
|
||||||
#include "felica.h"
|
#include "felica.h"
|
||||||
#include "hitag2.h"
|
#include "hitag2.h"
|
||||||
#include "hitagS.h"
|
#include "hitagS.h"
|
||||||
|
#include "em4x50.h"
|
||||||
#include "iclass.h"
|
#include "iclass.h"
|
||||||
#include "legicrfsim.h"
|
#include "legicrfsim.h"
|
||||||
#include "epa.h"
|
#include "epa.h"
|
||||||
|
@ -448,6 +449,11 @@ static void SendCapabilities(void) {
|
||||||
#else
|
#else
|
||||||
capabilities.compiled_with_hitag = false;
|
capabilities.compiled_with_hitag = false;
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef WITH_EM4x50
|
||||||
|
capabilities.compiled_with_em4x50 = true;
|
||||||
|
#else
|
||||||
|
capabilities.compiled_with_em4x50 = false;
|
||||||
|
#endif
|
||||||
#ifdef WITH_HFSNIFF
|
#ifdef WITH_HFSNIFF
|
||||||
capabilities.compiled_with_hfsniff = true;
|
capabilities.compiled_with_hfsniff = true;
|
||||||
#else
|
#else
|
||||||
|
@ -983,6 +989,13 @@ static void PacketReceived(PacketCommandNG *packet) {
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef WITH_EM4x50
|
||||||
|
case CMD_LF_EM4X50_INFO: {
|
||||||
|
em4x50_info((em4x50_data_t *)packet->data.asBytes);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef WITH_ISO15693
|
#ifdef WITH_ISO15693
|
||||||
case CMD_HF_ISO15693_ACQ_RAW_ADC: {
|
case CMD_HF_ISO15693_ACQ_RAW_ADC: {
|
||||||
AcquireRawAdcSamplesIso15693();
|
AcquireRawAdcSamplesIso15693();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue