mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-21 04:50:14 -08:00
f2dbf3d2aa
* (PRs 233, 303, 304 by @ViRb3 on https://github.com/RfidResearchGroup/proxmark3) * replace byte_t by uint8_t * note that Hitag1 commands are not yet available * whitespace fixes * #define Hitag2 commands * whitespace * add EOF wait time * add powerup wait time
25 lines
858 B
C
25 lines
858 B
C
//-----------------------------------------------------------------------------
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
// the license.
|
|
//-----------------------------------------------------------------------------
|
|
// Hitag2 emulation
|
|
//
|
|
// (c) 2009 Henryk Plötz <henryk@ploetzli.ch>
|
|
// (c) 2012 Roel Verdult
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef HITAG2_H__
|
|
#define HITAG2_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include "hitag.h"
|
|
|
|
extern void SnoopHitag(uint32_t type);
|
|
extern void SimulateHitagTag(bool tag_mem_supplied, uint8_t* data);
|
|
extern void ReaderHitag(hitag_function htf, hitag_data* htd);
|
|
extern void WriterHitag(hitag_function htf, hitag_data* htd, int page);
|
|
|
|
#endif
|