mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 05:13:46 -07:00
Some minor fixes
Use longer timeout in WaitForRawDataTimeout() to handle CMD_WTX Fix a wrong type Apply changes to other similar part Remove unused instructions
This commit is contained in:
parent
8b6a274e28
commit
ab9f49f86e
5 changed files with 19 additions and 17 deletions
|
@ -196,6 +196,9 @@ extern bool g_tearoff_enabled;
|
|||
#define CLEAR_BIT(data, i) *(data + (i / 8)) &= ~(1 << (7 - (i % 8)))
|
||||
#define FLIP_BIT(data, i) *(data + (i / 8)) ^= (1 << (7 - (i % 8)))
|
||||
|
||||
// time for decompressing and loading the image to the FPGA
|
||||
#define FPGA_LOAD_WAIT_TIME (1500)
|
||||
|
||||
// GCC extension
|
||||
// from client/deps/tinycbor/compilersupport_p.h
|
||||
#ifdef __GNUC__
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue