]>
git.zerfleddert.de Git - proxmark3-svn/blob - armsrc/util.h
b68c511c7c5007a52c8f721bb3c26e2eb355285a
1 //-----------------------------------------------------------------------------
2 // Jonathan Westhues, Aug 2005
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
8 // Utility functions used in many places, not specific to any piece of code.
9 //-----------------------------------------------------------------------------
17 #define RAMFUNC __attribute((long_call, section(".ramfunc")))
19 #define BYTEx(x, n) (((x) >> (n * 8)) & 0xff )
20 #define MIN(a, b) (((a) < (b)) ? (a) : (b))
21 #define MAX(a, b) (((a) > (b)) ? (a) : (b))
28 #define BUTTON_NO_CLICK 0
29 #define BUTTON_SINGLE_CLICK -1
30 #define BUTTON_DOUBLE_CLICK -2
31 #define BUTTON_ERROR -99
33 uint32_t SwapBits(uint32_t value
, int nrbits
);
34 void num_to_bytes(uint64_t n
, size_t len
, uint8_t* dest
);
35 uint64_t bytes_to_num(uint8_t* src
, size_t len
);
37 void SpinDelay(int ms
);
38 void SpinDelayUs(int us
);
39 void LED(int led
, int ms
);
41 int BUTTON_CLICKED(int ms
);
42 int BUTTON_HELD(int ms
);
43 void FormatVersionInformation(char *dst
, int len
, const char *prefix
, void *version_information
);
45 void StartTickCount();
46 uint32_t RAMFUNC
GetTickCount();
49 uint32_t RAMFUNC
GetCountUS();
50 uint32_t RAMFUNC
GetDeltaCountUS();