X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/051643995984009593bcb8180ff9f9d570af7df5..36dc0b437017bf360787afe3c15fd3cbaf941dd2:/client/cmddata.h diff --git a/client/cmddata.h b/client/cmddata.h index 20bdbd2b..b0ff5bd0 100644 --- a/client/cmddata.h +++ b/client/cmddata.h @@ -11,6 +11,14 @@ #ifndef CMDDATA_H__ #define CMDDATA_H__ +#include //size_t +#include //uint_32+ +#include //bool +#include "cmdparser.h" // for command_t + +#define MAX_DEMOD_BUF_LEN (1024*128) +#define BIGBUF_SIZE 40000 + command_t * CmdDataCommands(); int CmdData(const char *Cmd); @@ -22,6 +30,7 @@ int CmdG_Prox_II_Demod(const char *Cmd); int Cmdaskrawdemod(const char *Cmd); int Cmdaskmandemod(const char *Cmd); int AutoCorrelate(int window, bool SaveGrph, bool verbose); +int CmdAskEdgeDetect(const char *Cmd); int CmdAutoCorr(const char *Cmd); int CmdBiphaseDecodeRaw(const char *Cmd); int CmdBitsamples(const char *Cmd); @@ -38,6 +47,7 @@ int CmdFSKrawdemod(const char *Cmd); int CmdPSK1rawDemod(const char *Cmd); int CmdPSK2rawDemod(const char *Cmd); int CmdPSKNexWatch(const char *Cmd); +int CmdPSKIdteck(const char *Cmd); int CmdGrid(const char *Cmd); int CmdGetBitStream(const char *Cmd); int CmdHexsamples(const char *Cmd); @@ -70,11 +80,10 @@ int NRZrawDemod(const char *Cmd, bool verbose); void printEM410x(uint32_t hi, uint64_t id); int getSamples(const char *Cmd, bool silent); +int CmdDataIIR(const char *Cmd); -#define MAX_DEMOD_BUF_LEN (1024*128) extern uint8_t DemodBuffer[MAX_DEMOD_BUF_LEN]; extern size_t DemodBufferLen; extern uint8_t g_debugMode; -#define BIGBUF_SIZE 40000 #endif