mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 02:27:26 -07:00
feature: Make the FPGA bitstreams working with SKIP_* define.
Now, you can enable at least two of your favorite technologies (such as LF and HF 14443A) attached a standalone mode and still have spare ROM space for other functionalities on a Proxmark3 Easy with a 256KiB ROM.
This commit is contained in:
parent
8928883f2d
commit
413a17a7a6
5 changed files with 74 additions and 14 deletions
|
@ -43,8 +43,14 @@ typedef enum
|
|||
FPGA_BITSTREAM_MAX = FPGA_BITSTREAM_HF_15,
|
||||
} FPGA_config;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
const char *const versionString;
|
||||
const FPGA_config target_config;
|
||||
} FPGA_VERSION_INFORMATION;
|
||||
|
||||
static const uint8_t bitparse_fixed_header[] = {0x00, 0x09, 0x0f, 0xf0, 0x0f, 0xf0, 0x0f, 0xf0, 0x0f, 0xf0, 0x00, 0x00, 0x01};
|
||||
extern const int g_fpga_bitstream_num;
|
||||
extern const char *const g_fpga_version_information[];
|
||||
extern const FPGA_VERSION_INFORMATION g_fpga_version_information[];
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue