X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/8f51ddb0bd8fb7536a07966433061f03d45f65e0..17331e14ee99bebaef8d84fba44a90818bc5c817:/armsrc/util.h diff --git a/armsrc/util.h b/armsrc/util.h index 14403232..d2a85ba0 100644 --- a/armsrc/util.h +++ b/armsrc/util.h @@ -15,7 +15,6 @@ #include #define RAMFUNC __attribute((long_call, section(".ramfunc"))) - #define BYTEx(x, n) (((x) >> (n * 8)) & 0xff ) #define LED_RED 1 @@ -28,6 +27,7 @@ #define BUTTON_DOUBLE_CLICK -2 #define BUTTON_ERROR -99 +uint32_t SwapBits(uint32_t value, int nrbits); void num_to_bytes(uint64_t n, size_t len, uint8_t* dest); uint64_t bytes_to_num(uint8_t* src, size_t len);