+//-----------------------------------------------------------------------------
+// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
+//
+// 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 EM4x commands
+//-----------------------------------------------------------------------------
+
#include <stdio.h>
+#include <string.h>
#include "proxusb.h"
#include "ui.h"
#include "graph.h"
* looped until an EM410x tag is detected */
int CmdEM410xWatch(const char *Cmd)
{
- char *zero = "";
- char *twok = "2000";
-
- int stop = 0;
do
{
- CmdLFRead(zero);
- CmdLFSamples(twok);
- stop = CmdEM410xRead(zero);
- } while (!stop);
+ CmdLFRead("");
+ CmdSamples("2000");
+ } while ( ! CmdEM410xRead(""));
return 0;
}
high= low= 0;
clock= 64;
+ memset(tmpbuff, 0, MAX_GRAPH_TRACE_LEN / 64);
/* first get high and low values */
for (i = 0; i < GraphTraceLen; i++)