mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 05:13:46 -07:00
rework some defines
This commit is contained in:
parent
451de246b7
commit
16783000f0
4 changed files with 14 additions and 9 deletions
|
@ -131,6 +131,15 @@ extern bool tearoff_enabled;
|
|||
#endif
|
||||
#endif
|
||||
|
||||
// convert 2 bytes to U16
|
||||
#ifndef BYTES2UINT16
|
||||
# define BYTES2UINT16(x) ((x[1] << 8) | (x[0]))
|
||||
#endif
|
||||
// convert 4 bytes to U32
|
||||
#ifndef BYTES2UINT32
|
||||
# define BYTES2UINT32(x) ((x[3] << 24) | (x[2] << 16) | (x[1] << 8) | (x[0]))
|
||||
#endif
|
||||
|
||||
#define EVEN 0
|
||||
#define ODD 1
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue