X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/7fe9b0b742d7dae9c5af1d292d11840b5c3cbfae..6eeb5f1c29d33848c6a71703d02c8465237c7e7e:/client/cmdlf.h diff --git a/client/cmdlf.h b/client/cmdlf.h index 4055cf91..9f446ee0 100644 --- a/client/cmdlf.h +++ b/client/cmdlf.h @@ -1,15 +1,34 @@ +//----------------------------------------------------------------------------- +// Copyright (C) 2010 iZsh +// +// 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 commands +//----------------------------------------------------------------------------- + #ifndef CMDLF_H__ #define CMDLF_H__ -int CmdLF(const char *Cmd); +#include +#include + +extern int CmdLF(const char *Cmd); -int CmdLFCommandRead(const char *Cmd); -int CmdFlexdemod(const char *Cmd); -int CmdIndalaDemod(const char *Cmd); -int CmdLFRead(const char *Cmd); -int CmdLFSim(const char *Cmd); -int CmdLFSimBidir(const char *Cmd); -int CmdLFSimManchester(const char *Cmd); -int CmdVchDemod(const char *Cmd); +extern int CmdLFCommandRead(const char *Cmd); +extern int CmdFlexdemod(const char *Cmd); +extern int CmdIndalaDemod(const char *Cmd); +extern int CmdIndalaClone(const char *Cmd); +extern int CmdLFRead(const char *Cmd); +extern int CmdLFSim(const char *Cmd); +extern int CmdLFaskSim(const char *Cmd); +extern int CmdLFfskSim(const char *Cmd); +extern int CmdLFpskSim(const char *Cmd); +extern int CmdLFSimBidir(const char *Cmd); +extern int CmdLFSnoop(const char *Cmd); +extern int CmdVchDemod(const char *Cmd); +extern int CmdLFfind(const char *Cmd); +extern bool lf_read(bool silent, uint32_t samples); #endif