From: iceman1001 Date: Tue, 22 Dec 2015 15:14:03 +0000 (+0100) Subject: FIX: the usb_poll_validate_length() check should be inversed, thanks @marshmellow42 X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/c35145bf7af3c40a160bf756d5fd8cc89e93cf5e FIX: the usb_poll_validate_length() check should be inversed, thanks @marshmellow42 --- diff --git a/armsrc/lfops.c b/armsrc/lfops.c index 22173059..85931aa3 100644 --- a/armsrc/lfops.c +++ b/armsrc/lfops.c @@ -400,7 +400,7 @@ void SimulateTagLowFrequency(int period, int gap, int ledcontrol) for(;;) { //wait until SSC_CLK goes HIGH while(!(AT91C_BASE_PIOA->PIO_PDSR & GPIO_SSC_CLK)) { - if(BUTTON_PRESS() || !usb_poll_validate_length() ) { + if(BUTTON_PRESS() || usb_poll_validate_length() ) { DbpString("Stopped"); return; } @@ -417,7 +417,7 @@ void SimulateTagLowFrequency(int period, int gap, int ledcontrol) //wait until SSC_CLK goes LOW while(AT91C_BASE_PIOA->PIO_PDSR & GPIO_SSC_CLK) { - if( BUTTON_PRESS() || !usb_poll_validate_length() ) { + if( BUTTON_PRESS() || usb_poll_validate_length() ) { DbpString("Stopped"); return; }