From: marshmellow42 Date: Fri, 10 Nov 2017 21:03:55 +0000 (-0500) Subject: fix incorrect variable name X-Git-Tag: v3.1.0~128^2 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/cb593491df72561bacc60ab246ef4ef94ecdb14b?hp=217cfb6b29773989774cbe573af0372df09f056b fix incorrect variable name that is what i get for going back over my code and trying to mimic the naming style used previously... --- diff --git a/armsrc/lfsampling.c b/armsrc/lfsampling.c index 643b3168..999f56bb 100644 --- a/armsrc/lfsampling.c +++ b/armsrc/lfsampling.c @@ -334,7 +334,7 @@ uint32_t doCotagAcquisitionManchester() { uint16_t sample_counter = 0, period = 0; uint8_t curr = 0, prev = 0; uint16_t noise_counter = 0; - while (!BUTTON_PRESS() && !usb_poll_validate_length() && (sample_counter < bufsize) && (noiseCounter < (COTAG_T1<<1)) ) { + while (!BUTTON_PRESS() && !usb_poll_validate_length() && (sample_counter < bufsize) && (noise_counter < (COTAG_T1<<1)) ) { WDT_HIT(); if (AT91C_BASE_SSC->SSC_SR & AT91C_SSC_TXRDY) { AT91C_BASE_SSC->SSC_THR = 0x43;