]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - armsrc/util.h
Fix description in help dump
[proxmark3-svn] / armsrc / util.h
index b68c511c7c5007a52c8f721bb3c26e2eb355285a..e8b9cdffbc8dd2ebf3a537ae9592a9207fba8ae0 100644 (file)
 
 #include <stddef.h>
 #include <stdint.h>
-
-#define RAMFUNC __attribute((long_call, section(".ramfunc")))
+#include <common.h>
 
 #define BYTEx(x, n) (((x) >> (n * 8)) & 0xff )
-#define MIN(a, b) (((a) < (b)) ? (a) : (b))
-#define MAX(a, b) (((a) > (b)) ? (a) : (b))
 
 #define LED_RED 1
 #define LED_ORANGE 2
@@ -30,6 +27,7 @@
 #define BUTTON_DOUBLE_CLICK -2
 #define BUTTON_ERROR -99
 
+size_t nbytes(size_t nbits);
 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);
@@ -49,4 +47,7 @@ void StartCountUS();
 uint32_t RAMFUNC GetCountUS();
 uint32_t RAMFUNC GetDeltaCountUS();
 
+void StartCountSspClk();
+uint32_t RAMFUNC GetCountSspClk();
+
 #endif
Impressum, Datenschutz