X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/c068ebb78f2e4070fcf1a604df0d7088374b60c6..615f21dde29ed68c6b9dbb6c79c2a293751d777a:/armsrc/appmain.c diff --git a/armsrc/appmain.c b/armsrc/appmain.c index 0d3337b6..6eedcdd6 100644 --- a/armsrc/appmain.c +++ b/armsrc/appmain.c @@ -10,16 +10,17 @@ // executes. //----------------------------------------------------------------------------- -#include "../common/usb_cdc.h" -#include "../common/cmd.h" -#include "../include/proxmark3.h" -#include "../include/hitag2.h" +#include "usb_cdc.h" +#include "cmd.h" + +#include "proxmark3.h" #include "apps.h" #include "util.h" #include "printf.h" #include "string.h" #include #include "legicrf.h" +#include #include "lfsampling.h" #include "BigBuf.h" @@ -843,11 +844,11 @@ void UsbPacketReceived(uint8_t *packet, int len) case CMD_MIFARE_WRITEBL: MifareWriteBlock(c->arg[0], c->arg[1], c->arg[2], c->d.asBytes); break; - case CMD_MIFAREU_WRITEBL_COMPAT: - MifareUWriteBlock(c->arg[0], c->d.asBytes); - break; + //case CMD_MIFAREU_WRITEBL_COMPAT: + //MifareUWriteBlockCompat(c->arg[0], c->d.asBytes); + //break; case CMD_MIFAREU_WRITEBL: - MifareUWriteBlock_Special(c->arg[0], c->arg[1], c->d.asBytes); + MifareUWriteBlock(c->arg[0], c->arg[1], c->d.asBytes); break; case CMD_MIFARE_NESTED: MifareNested(c->arg[0], c->arg[1], c->arg[2], c->d.asBytes);