2010-02-21 08:12:52 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2022-01-06 09:19:46 +08:00
|
|
|
// Copyright (C) Jonathan Westhues, Aug 2005
|
|
|
|
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
2010-02-21 08:12:52 +08:00
|
|
|
//
|
2022-01-06 09:19:46 +08:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// See LICENSE.txt for the text of the license.
|
2010-02-21 08:12:52 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Utility functions used in many places, not specific to any piece of code.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2010-02-21 06:51:00 +08:00
|
|
|
#ifndef __UTIL_H
|
|
|
|
#define __UTIL_H
|
|
|
|
|
2015-01-14 06:18:04 +08:00
|
|
|
#include "common.h"
|
2010-02-21 06:51:00 +08:00
|
|
|
|
2020-03-14 01:03:48 +08:00
|
|
|
// PRIx64 definition missing with gcc-arm-none-eabi v8?
|
|
|
|
#ifndef PRIx64
|
2020-04-16 15:01:14 +08:00
|
|
|
#define PRIx64 "llx"
|
2020-03-14 01:03:48 +08:00
|
|
|
#endif
|
|
|
|
|
2019-03-13 16:10:52 +08:00
|
|
|
// Basic macros
|
2019-04-26 16:36:06 +08:00
|
|
|
|
2019-03-13 16:10:52 +08:00
|
|
|
#ifndef SHORT_COIL
|
|
|
|
#define SHORT_COIL() LOW(GPIO_SSC_DOUT)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef OPEN_COIL
|
|
|
|
#define OPEN_COIL() HIGH(GPIO_SSC_DOUT)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef BYTEx
|
2011-05-26 20:55:15 +08:00
|
|
|
#define BYTEx(x, n) (((x) >> (n * 8)) & 0xff )
|
2019-03-13 16:10:52 +08:00
|
|
|
#endif
|
2011-05-26 20:55:15 +08:00
|
|
|
|
2019-06-02 17:47:10 +08:00
|
|
|
// Proxmark3 RDV4.0 LEDs
|
|
|
|
#define LED_A 1
|
|
|
|
#define LED_B 2
|
|
|
|
#define LED_C 4
|
|
|
|
#define LED_D 8
|
|
|
|
|
|
|
|
// Proxmark3 historical LEDs
|
|
|
|
#define LED_ORANGE LED_A
|
|
|
|
#define LED_GREEN LED_B
|
|
|
|
#define LED_RED LED_C
|
|
|
|
#define LED_RED2 LED_D
|
|
|
|
|
2010-02-21 06:51:00 +08:00
|
|
|
#define BUTTON_HOLD 1
|
|
|
|
#define BUTTON_NO_CLICK 0
|
|
|
|
#define BUTTON_SINGLE_CLICK -1
|
|
|
|
#define BUTTON_DOUBLE_CLICK -2
|
|
|
|
#define BUTTON_ERROR -99
|
2010-02-21 08:10:28 +08:00
|
|
|
|
2019-03-13 16:10:52 +08:00
|
|
|
#ifndef REV8
|
|
|
|
#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))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef REV16
|
2020-05-14 23:52:00 +08:00
|
|
|
#define REV16(x) (REV8(x) + (REV8 ((x) >> 8) << 8))
|
2019-03-13 16:10:52 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef REV32
|
2020-05-14 23:52:00 +08:00
|
|
|
#define REV32(x) (REV16(x) + (REV16((x) >> 16) << 16))
|
2019-03-13 16:10:52 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef REV64
|
2020-08-31 07:19:06 +08:00
|
|
|
#define REV64(x) (REV32(x) + ((uint64_t)(REV32((x) >> 32) << 32)))
|
2019-03-13 16:10:52 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef BIT32
|
|
|
|
#define BIT32(x,n) ((((x)[(n)>>5])>>((n)))&1)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef INV32
|
|
|
|
#define INV32(x,i,n) ((x)[(i)>>5]^=((uint32_t)(n))<<((i)&31))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef ROTL64
|
|
|
|
#define ROTL64(x, n) ((((uint64_t)(x))<<((n)&63))+(((uint64_t)(x))>>((0-(n))&63)))
|
|
|
|
#endif
|
|
|
|
|
2013-04-03 16:45:04 +08:00
|
|
|
size_t nbytes(size_t nbits);
|
2018-01-28 05:20:56 +08:00
|
|
|
|
2017-02-06 04:09:36 +08:00
|
|
|
uint8_t hex2int(char hexchar);
|
2010-02-21 06:51:00 +08:00
|
|
|
|
|
|
|
void LED(int led, int ms);
|
2018-11-07 05:20:55 +08:00
|
|
|
void LEDsoff(void);
|
|
|
|
void SpinOff(uint32_t pause);
|
|
|
|
void SpinErr(uint8_t led, uint32_t speed, uint8_t times);
|
|
|
|
void SpinDown(uint32_t speed);
|
|
|
|
void SpinUp(uint32_t speed);
|
|
|
|
|
2010-02-21 06:51:00 +08:00
|
|
|
int BUTTON_CLICKED(int ms);
|
|
|
|
int BUTTON_HELD(int ms);
|
2019-06-03 06:01:08 +08:00
|
|
|
bool data_available(void);
|
2010-02-21 06:51:00 +08:00
|
|
|
|
2010-02-25 04:34:13 +08:00
|
|
|
#endif
|