X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/b8fdac9e6fedfda5e291e437766ed46e3caf7c32..ca24170fd4fe631b9ee5deedaa93f9e00cfe3f4f:/client/graph.h diff --git a/client/graph.h b/client/graph.h index e70efe46..b20ae4e8 100644 --- a/client/graph.h +++ b/client/graph.h @@ -32,12 +32,11 @@ void DetectHighLowInGraph(int *high, int *low, bool addFuzz); // Max graph trace len: 40000 (bigbuf) * 8 (at 1 bit per sample) #define MAX_GRAPH_TRACE_LEN (40000 * 8 ) +#define GRAPH_SAVE 1 +#define GRAPH_RESTORE 0 extern int GraphBuffer[MAX_GRAPH_TRACE_LEN]; extern int GraphTraceLen; extern int s_Buff[MAX_GRAPH_TRACE_LEN]; -int autoCorr(const int* in, int *out, size_t len, int window); -int directionalThreshold(const int* in, int *out, size_t len, int8_t up, int8_t down); - #endif