mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
Initial commit for em4x70 support.
Initially I only have an em4x70 variant used for car transponders. Also known as the ID48.
This commit is contained in:
parent
ee3c0faee1
commit
614ab55809
17 changed files with 866 additions and 0 deletions
|
@ -31,6 +31,7 @@
|
|||
#include "hitag2.h"
|
||||
#include "hitagS.h"
|
||||
#include "em4x50.h"
|
||||
#include "em4x70.h"
|
||||
#include "iclass.h"
|
||||
#include "legicrfsim.h"
|
||||
//#include "cryptorfsim.h"
|
||||
|
@ -479,6 +480,12 @@ static void SendCapabilities(void) {
|
|||
#else
|
||||
capabilities.compiled_with_em4x50 = false;
|
||||
#endif
|
||||
#ifdef WITH_EM4x70
|
||||
capabilities.compiled_with_em4x70 = true;
|
||||
#else
|
||||
capabilities.compiled_with_em4x70 = false;
|
||||
#endif
|
||||
|
||||
#ifdef WITH_HFSNIFF
|
||||
capabilities.compiled_with_hfsniff = true;
|
||||
#else
|
||||
|
@ -1120,6 +1127,13 @@ static void PacketReceived(PacketCommandNG *packet) {
|
|||
}
|
||||
#endif
|
||||
|
||||
#ifdef WITH_EM4x70
|
||||
case CMD_LF_EM4X70_INFO: {
|
||||
em4x70_info((em4x70_data_t *)packet->data.asBytes);
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef WITH_ISO15693
|
||||
case CMD_HF_ISO15693_ACQ_RAW_ADC: {
|
||||
AcquireRawAdcSamplesIso15693();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue