X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/f0ba6342218d4eb264668655e3c24ad74d99c0f4..babfcaa0f3e4f3d83fd7ac9707a37db12431ec80:/client/proxmark3.c diff --git a/client/proxmark3.c b/client/proxmark3.c index 38a97716..5cbacc86 100644 --- a/client/proxmark3.c +++ b/client/proxmark3.c @@ -21,12 +21,12 @@ #include "proxgui.h" #include "cmdmain.h" #include "uart.h" -#include "messages.h" #include "ui.h" +#include "sleep.h" static serial_port sp; static UsbCommand txcmd; -static bool txcmd_pending = false; +volatile static bool txcmd_pending = false; void SendCommand(UsbCommand *c) { #if 0 @@ -67,6 +67,7 @@ struct main_loop_arg { //} byte_t rx[0x1000000]; +byte_t* prx = rx; static void *uart_receiver(void *targ) { struct receiver_arg *arg = (struct receiver_arg*)targ; @@ -75,18 +76,19 @@ static void *uart_receiver(void *targ) { while (arg->run) { rxlen = sizeof(UsbCommand); - if (uart_receive(sp,rx,&rxlen)) { - if ((rxlen % sizeof(UsbCommand)) != 0) { - PrintAndLog("ERROR: received %03zd bytes, which does not seem to be one or more command(s)\n",rxlen ); + if (uart_receive(sp,prx,&rxlen)) { + prx += rxlen; + if (((prx-rx) % sizeof(UsbCommand)) != 0) { continue; } - cmd_count = rxlen / sizeof(UsbCommand); -// printf("received %zd bytes, which represents %zd commands\n",rxlen, cmd_count); + cmd_count = (prx-rx) / sizeof(UsbCommand); + // printf("received %d bytes, which represents %d commands\n",(prx-rx), cmd_count); for (size_t i=0; i\n\n",argv[0]); + printf("\tLinux example:'%s /dev/ttyACM0'\n\n", argv[0]); return 1; } @@ -219,11 +222,16 @@ int main(int argc, char* argv[]) { offline = 0; } */ + sp = uart_open(argv[1]); if (sp == INVALID_SERIAL_PORT) { printf("ERROR: invalid serial port\n"); marg.usb_present = 0; offline = 1; + } else if (sp == CLAIMED_SERIAL_PORT) { + printf("ERROR: serial port is claimed by another process\n"); + marg.usb_present = 0; + offline = 1; } else { marg.usb_present = 1; offline = 0;