]> git.zerfleddert.de Git - proxmark3-svn/blame_incremental - armsrc/util.h
fix 'hf iclass reader'
[proxmark3-svn] / armsrc / util.h
... / ...
CommitLineData
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
11#ifndef __UTIL_H
12#define __UTIL_H
13
14#include <stddef.h>
15#include <stdint.h>
16#include "common.h"
17
18#define BYTEx(x, n) (((x) >> (n * 8)) & 0xff )
19
20#define LED_RED 1
21#define LED_ORANGE 2
22#define LED_GREEN 4
23#define LED_RED2 8
24
25#define BUTTON_HOLD 1
26#define BUTTON_NO_CLICK 0
27#define BUTTON_SINGLE_CLICK -1
28#define BUTTON_DOUBLE_CLICK -2
29#define BUTTON_ERROR -99
30
31#define REV8(x) ((((x)>>7)&1)|((((x)>>6)&1)<<1)|((((x)>>5)&1)<<2)|((((x)>>4)&1)<<3)|((((x)>>3)&1)<<4)|((((x)>>2)&1)<<5)|((((x)>>1)&1)<<6)|(((x)&1)<<7))
32#define REV16(x) (REV8(x) | (REV8 (x >> 8) << 8))
33#define REV32(x) (REV16(x) | (REV16(x >> 16) << 16))
34#define REV64(x) (REV32(x) | (REV32(x >> 32) << 32))
35
36void print_result(char *name, uint8_t *buf, size_t len);
37size_t nbytes(size_t nbits);
38uint32_t SwapBits(uint32_t value, int nrbits);
39void num_to_bytes(uint64_t n, size_t len, uint8_t* dest);
40uint64_t bytes_to_num(uint8_t* src, size_t len);
41void rol(uint8_t *data, const size_t len);
42void lsl (uint8_t *data, size_t len);
43
44void LED(int led, int ms);
45void LEDsoff();
46void LEDson();
47void LEDsinvert();
48int BUTTON_CLICKED(int ms);
49int BUTTON_HELD(int ms);
50void FormatVersionInformation(char *dst, int len, const char *prefix, void *version_information);
51
52//iceman's ticks.h
53#ifndef GET_TICKS
54# define GET_TICKS GetTicks()
55#endif
56
57void SpinDelay(int ms);
58void SpinDelayUs(int us);
59
60void StartTickCount();
61uint32_t RAMFUNC GetTickCount();
62
63void StartCountUS();
64uint32_t RAMFUNC GetCountUS();
65uint32_t RAMFUNC GetDeltaCountUS();
66
67void StartCountSspClk();
68void ResetSspClk(void);
69uint32_t GetCountSspClk();
70
71extern void StartTicks(void);
72extern uint32_t GetTicks(void);
73extern void WaitTicks(uint32_t ticks);
74extern void WaitUS(uint16_t us);
75extern void WaitMS(uint16_t ms);
76extern void ResetTicks();
77extern void ResetTimer(AT91PS_TC timer);
78extern void StopTicks(void);
79// end iceman's ticks.h
80
81uint32_t prand();
82
83#endif
Impressum, Datenschutz