mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
iso15 sniffing: add support for dual subcarriers tag answers
This commit is contained in:
parent
1818fc6b52
commit
1f7bce5580
9 changed files with 792 additions and 26 deletions
|
@ -29,6 +29,7 @@
|
|||
#define FPGA_BITSTREAM_LF 1
|
||||
#define FPGA_BITSTREAM_HF 2
|
||||
#define FPGA_BITSTREAM_HF_FELICA 3
|
||||
#define FPGA_BITSTREAM_HF_15 4
|
||||
|
||||
/*
|
||||
Communication between ARM / FPGA is done inside armsrc/fpgaloader.c (function FpgaSendCommand)
|
||||
|
@ -77,6 +78,7 @@ thres| x x x x x x x x
|
|||
#define FPGA_MAJOR_MODE_HF_SNIFF (3<<6) // D
|
||||
#define FPGA_MAJOR_MODE_HF_ISO18092 (4<<6) // D
|
||||
#define FPGA_MAJOR_MODE_HF_GET_TRACE (5<<6) // D
|
||||
#define FPGA_MAJOR_MODE_HF_FSK_READER (6<<6) // D
|
||||
|
||||
// BOTH HF / LF
|
||||
#define FPGA_MAJOR_MODE_OFF (7<<6) // D
|
||||
|
@ -105,6 +107,14 @@ thres| x x x x x x x x
|
|||
#define FPGA_HF_READER_SUBCARRIER_424_KHZ (1<<4)
|
||||
#define FPGA_HF_READER_SUBCARRIER_212_KHZ (2<<4)
|
||||
|
||||
#define FPGA_HF_FSK_READER_OUTPUT_1695_KHZ (0<<0)
|
||||
#define FPGA_HF_FSK_READER_OUTPUT_848_KHZ (1<<0)
|
||||
#define FPGA_HF_FSK_READER_OUTPUT_424_KHZ (2<<0)
|
||||
#define FPGA_HF_FSK_READER_OUTPUT_212_KHZ (3<<0)
|
||||
|
||||
#define FPGA_HF_FSK_READER_NOPOWER (0<<4)
|
||||
#define FPGA_HF_FSK_READER_WITHPOWER (1<<4)
|
||||
|
||||
// Options for the HF simulated tag, how to modulate
|
||||
#define FPGA_HF_SIMULATOR_NO_MODULATION 0x0 // 0000
|
||||
#define FPGA_HF_SIMULATOR_MODULATE_BPSK 0x1 // 0001
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue