mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
fix: g_debugMode - client side global debugvariable, moved to util.c
This commit is contained in:
parent
180e3d4df9
commit
a29b2328db
6 changed files with 12 additions and 8 deletions
|
@ -25,7 +25,6 @@
|
|||
#include <endian.h>
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef BITMASK
|
||||
# define BITMASK(X) (1 << (X))
|
||||
#endif
|
||||
|
@ -162,13 +161,14 @@
|
|||
# define _YELLOW_(s) #s
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef DropField
|
||||
#define DropField() { \
|
||||
UsbCommand c = {CMD_READER_ISO_14443a, {0,0,0}}; clearCommandBuffer(); SendCommand(&c); \
|
||||
}
|
||||
#endif
|
||||
|
||||
extern uint8_t g_debugMode;
|
||||
|
||||
extern int ukbhit(void);
|
||||
extern void AddLogLine(char *fileName, char *extData, char *c);
|
||||
extern void AddLogHex(char *fileName, char *extData, const uint8_t * data, const size_t len);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue