mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-21 04:50:14 -08:00
00848e096b
* don't display error message during 'lf search' when no Hitag tag is present * remove superfluous options in 'lf hitag read' * fix setting of default threshold when selecting FPGA_CMD_SET_EDGE_DETECT_THRESHOLD major mode * some refactoring
22 lines
718 B
C
22 lines
718 B
C
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2012 Roel Verdult
|
|
//
|
|
// 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.
|
|
//-----------------------------------------------------------------------------
|
|
// Low frequency Hitag support
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef CMDLFHITAG_H__
|
|
#define CMDLFHITAG_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
extern int CmdLFHitag(const char *Cmd);
|
|
extern int CmdLFHitagReader(const char *Cmd);
|
|
extern bool getHitagUid(uint32_t *uid, bool quiet);
|
|
|
|
#endif
|