mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-27 02:24:47 +08:00
fix #1640 the btaddon compilation leaves the bigbuff malloc around 38kb. By lessen the fpga ring buffer to be 30kb instead leaves some room for a smaller bigbuff
This commit is contained in:
parent
7fdcad8537
commit
d5205e5a34
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@
|
|||
#else
|
||||
#define FPGA_CONFIG_SIZE 42336L // our current fpga_[lh]f.bit files are 42175 bytes. Rounded up to next multiple of FPGA_INTERLEAVE_SIZE
|
||||
#endif
|
||||
#define FPGA_RING_BUFFER_BYTES (1024 * 39)
|
||||
#define FPGA_RING_BUFFER_BYTES (1024 * 30)
|
||||
#define FPGA_TRACE_SIZE 3072
|
||||
|
||||
static const uint8_t bitparse_fixed_header[] = {0x00, 0x09, 0x0f, 0xf0, 0x0f, 0xf0, 0x0f, 0xf0, 0x0f, 0xf0, 0x00, 0x00, 0x01};
|
||||
|
|
Loading…
Reference in a new issue