X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/e654346b7952ec0a024189c30b657195bf35f7e4..f53020e729d583f7975095ca7b4b467741d99edb:/client/flasher.c diff --git a/client/flasher.c b/client/flasher.c index 2a24ba8f..e982ecf1 100644 --- a/client/flasher.c +++ b/client/flasher.c @@ -13,7 +13,7 @@ #include "proxmark3.h" #include "flash.h" #include "uart.h" -#include "usb_cmd.h" +#include "../include/usb_cmd.h" #ifdef _WIN32 # define unlink(x) @@ -52,11 +52,8 @@ void ReceiveCommand(UsbCommand* rxcmd) { while (true) { rxlen = sizeof(UsbCommand) - (prx-prxcmd); if (uart_receive(sp,prx,&rxlen)) { -// printf("received [%zd] bytes\n",rxlen); prx += rxlen; if ((prx-prxcmd) >= sizeof(UsbCommand)) { -// printf("received: "); -// cmd_debug(rxcmd); return; } }