X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/38cb7c71c52b1b710dd0a8a8883713617b713035..e04475c42128e4b61c96cab0ff2c1a47d6413885:/client/cmdlfcotag.h diff --git a/client/cmdlfcotag.h b/client/cmdlfcotag.h new file mode 100644 index 00000000..c46348e4 --- /dev/null +++ b/client/cmdlfcotag.h @@ -0,0 +1,32 @@ +//----------------------------------------------------------------------------- +// Authored by Iceman +// +// 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 COTAG commands +//----------------------------------------------------------------------------- + +#ifndef CMDLFCOTAG_H__ +#define CMDLFCOTAG_H__ + +#include "proxmark3.h"// Definitions, USB controls, COTAG_BITS +#include "util.h" // FALSE / TRUE +#include "cmddata.h" // getSamples +#include "cmdparser.h"// CmdsParse, CmdsHelp +#include "cmdmain.h" +#include "ui.h" // PrintAndLog +#include "cmdlf.h" // Setconfig +#include "lfdemod.h" // manrawdecode, bytebits_tobyteLSBF + +#ifndef COTAG_BITS +#define COTAG_BITS 264 +#endif + +int CmdLFCOTAG(const char *Cmd); +int CmdCOTAGRead(const char *Cmd); +int CmdCOTAGDemod(const char *Cmd); + +int usage_lf_cotag_read(void); +#endif