Files
proxmark3/client/src/cmdlfpac.h
T

29 lines
1.1 KiB
C
Raw Permalink Normal View History

2017-07-14 15:51:12 +02:00
//-----------------------------------------------------------------------------
2022-01-07 01:58:03 +01:00
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
2017-07-14 15:51:12 +02:00
//
2022-01-07 01:58:03 +01: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.
2017-07-14 15:51:12 +02:00
//-----------------------------------------------------------------------------
2017-07-30 09:17:48 +02:00
// Low frequency Stanley/PAC tag commands
2017-07-14 15:51:12 +02:00
//-----------------------------------------------------------------------------
#ifndef CMDLFPAC_H__
#define CMDLFPAC_H__
2019-08-08 16:57:33 +02:00
#include "common.h"
2017-07-30 09:17:48 +02:00
2019-04-06 00:38:22 +02:00
int CmdLFPac(const char *Cmd);
2017-07-14 15:51:12 +02:00
2020-09-28 11:50:20 +02:00
int demodPac(bool verbose);
int detectPac(uint8_t *dest, size_t *size, bool *invert);
2017-07-14 15:51:12 +02:00
#endif