]> git.zerfleddert.de Git - proxmark3-svn/blame - armsrc/util.h
Fix description in help dump
[proxmark3-svn] / armsrc / util.h
CommitLineData
bd20f8f4 1//-----------------------------------------------------------------------------
2// Jonathan Westhues, Aug 2005
3//
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
6// the license.
7//-----------------------------------------------------------------------------
8// Utility functions used in many places, not specific to any piece of code.
9//-----------------------------------------------------------------------------
10
f7e3ed82 11#ifndef __UTIL_H
12#define __UTIL_H
13
14#include <stddef.h>
15#include <stdint.h>
ce55f5a2 16#include <common.h>
f7e3ed82 17
20f9a2a1
M
18#define BYTEx(x, n) (((x) >> (n * 8)) & 0xff )
19
f7e3ed82 20#define LED_RED 1
21#define LED_ORANGE 2
22#define LED_GREEN 4
23#define LED_RED2 8
24#define BUTTON_HOLD 1
25#define BUTTON_NO_CLICK 0
26#define BUTTON_SINGLE_CLICK -1
27#define BUTTON_DOUBLE_CLICK -2
28#define BUTTON_ERROR -99
9ab7a6c7 29
195af472 30size_t nbytes(size_t nbits);
81cd0474 31uint32_t SwapBits(uint32_t value, int nrbits);
f7e3ed82 32void num_to_bytes(uint64_t n, size_t len, uint8_t* dest);
33uint64_t bytes_to_num(uint8_t* src, size_t len);
34
35void SpinDelay(int ms);
36void SpinDelayUs(int us);
37void LED(int led, int ms);
38void LEDsoff();
39int BUTTON_CLICKED(int ms);
40int BUTTON_HELD(int ms);
41void FormatVersionInformation(char *dst, int len, const char *prefix, void *version_information);
42
9ca155ba
M
43void StartTickCount();
44uint32_t RAMFUNC GetTickCount();
45
8f51ddb0
M
46void StartCountUS();
47uint32_t RAMFUNC GetCountUS();
48uint32_t RAMFUNC GetDeltaCountUS();
49
7bc95e2e 50void StartCountSspClk();
51uint32_t RAMFUNC GetCountSspClk();
1c611bbd 52
9e13f875 53#endif
Impressum, Datenschutz