From: adam@algroup.co.uk Date: Sat, 6 Feb 2010 18:05:05 +0000 (+0000) Subject: streamline CmdEM410xWatch X-Git-Tag: v1.0.0~375 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/ab2fd3d68b5670b5c7550f2e98f9c8f8909a6a6e streamline CmdEM410xWatch --- diff --git a/client/cmdlfem4x.c b/client/cmdlfem4x.c index 52d407ab..9b40d7c0 100644 --- a/client/cmdlfem4x.c +++ b/client/cmdlfem4x.c @@ -235,16 +235,11 @@ int CmdEM410xSim(const char *Cmd) * 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; }