]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - client/cmdlfawid.c
CHG: change the number of calls to prng_successor was done. Fewer should mean faster :)
[proxmark3-svn] / client / cmdlfawid.c
index e4155319aae417c8a47d71e94c899f4c2e3a38c8..2334e3e3321ffba7ded59066a8ae37d167f22650 100644 (file)
@@ -84,7 +84,7 @@ int usage_lf_awid_brute(void){
        return 0;
 }
 
-static boolean sendTry(uint8_t fmtlen, uint32_t fc, uint32_t cn, uint32_t delay, uint8_t *bs, size_t bs_len){
+static bool sendTry(uint8_t fmtlen, uint32_t fc, uint32_t cn, uint32_t delay, uint8_t *bs, size_t bs_len){
 
        PrintAndLog("Trying FC: %u; CN: %u", fc, cn);           
        if ( !getAWIDBits(fmtlen, fc, cn, bs)) {
@@ -104,8 +104,9 @@ static boolean sendTry(uint8_t fmtlen, uint32_t fc, uint32_t cn, uint32_t delay,
 static int sendPing(){
        UsbCommand resp;
        UsbCommand ping = {CMD_PING};
-       clearCommandBuffer();
-       SendCommand(&ping);
+       clearCommandBuffer(); SendCommand(&ping);
+       clearCommandBuffer(); SendCommand(&ping);
+       clearCommandBuffer(); SendCommand(&ping);
        if (WaitForResponseTimeout(CMD_ACK, &resp, 1000)) {
                PrintAndLog("aborted via keyboard!");
                return 0;
@@ -374,7 +375,7 @@ int CmdAWIDBrute(const char *Cmd){
                
                // Do one down  (if cardnumber is given)
                if ( cn > 1 )
-                       if ( down > 0 )
+                       if ( down > 1 )
                                if ( !sendTry(fmtlen, fc, --down, delay, bs, size)) return 1;
        }
        return 0;
Impressum, Datenschutz