X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/92623113b43d1f36cb72e61b8ce29ac74cf7db71..0644d5e3a3ed255fea1084c0af564c00f592b36c:/client/graph.h diff --git a/client/graph.h b/client/graph.h index fe35d4f1..9817d776 100644 --- a/client/graph.h +++ b/client/graph.h @@ -23,7 +23,9 @@ void setGraphBuf(uint8_t *buff, size_t size); bool HasGraphData(); void DetectHighLowInGraph(int *high, int *low, bool addFuzz); -#define MAX_GRAPH_TRACE_LEN (1024*128) +// Max graph trace len: 40000 (bigbuf) * 8 (at 1 bit per sample) +#define MAX_GRAPH_TRACE_LEN (40000 * 8 ) + extern int GraphBuffer[MAX_GRAPH_TRACE_LEN]; extern int GraphTraceLen; #endif