]>
git.zerfleddert.de Git - proxmark3-svn/blob - armsrc/util.h
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 //-----------------------------------------------------------------------------
18 #define BYTEx(x, n) (((x) >> (n * 8)) & 0xff )
25 #define BUTTON_NO_CLICK 0
26 #define BUTTON_SINGLE_CLICK -1
27 #define BUTTON_DOUBLE_CLICK -2
28 #define BUTTON_ERROR -99
30 void print_result(char *name
, uint8_t *buf
, size_t len
);
31 size_t nbytes(size_t nbits
);
32 uint32_t SwapBits(uint32_t value
, int nrbits
);
33 void num_to_bytes(uint64_t n
, size_t len
, uint8_t* dest
);
34 uint64_t bytes_to_num(uint8_t* src
, size_t len
);
35 void rol(uint8_t *data
, const size_t len
);
36 void lsl (uint8_t *data
, size_t len
);
37 int32_t le24toh (uint8_t data
[3]);
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
);
47 # define GET_TICKS GetTicks()
50 void SpinDelay(int ms
);
51 void SpinDelayUs(int us
);
53 void StartTickCount();
54 uint32_t RAMFUNC
GetTickCount();
57 uint32_t RAMFUNC
GetCountUS();
58 uint32_t RAMFUNC
GetDeltaCountUS();
60 void StartCountSspClk();
61 void ResetSspClk(void);
62 uint32_t RAMFUNC
GetCountSspClk();
64 extern void StartTicks(void);
65 extern uint32_t GetTicks(void);
66 extern void WaitTicks(uint32_t ticks
);
67 extern void WaitUS(uint16_t us
);
68 extern void WaitMS(uint16_t ms
);
69 extern void ResetTicks();
70 extern void ResetTimer(AT91PS_TC timer
);
71 extern void StopTicks(void);
72 // end iceman's ticks.h