From: marshmellow42 Date: Mon, 20 Jun 2016 03:44:54 +0000 (-0400) Subject: Fix the AskEdgeDetect cleaning tool X-Git-Tag: v3.0.0~87^2~11 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/de53156e1ea6982f03a6c39adf1ae17a57056132 Fix the AskEdgeDetect cleaning tool somehow it got broken. (maybe i had an incomplete pull request once upon a time) --- diff --git a/client/cmddata.c b/client/cmddata.c index 9854ccfa..ba161dd8 100644 --- a/client/cmddata.c +++ b/client/cmddata.c @@ -879,13 +879,15 @@ int CmdGraphShiftZero(const char *Cmd) int CmdAskEdgeDetect(const char *Cmd) { int thresLen = 25; + int Last = 0; sscanf(Cmd, "%i", &thresLen); for(int i = 1; i=thresLen) //large jump up - GraphBuffer[i-1] = 127; + Last = 127; else if(GraphBuffer[i]-GraphBuffer[i-1]<=-1*thresLen) //large jump down - GraphBuffer[i-1] = -127; + Last = -127; + GraphBuffer[i-1] = Last; } RepaintGraphWindow(); return 0;