X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/4bf0f73d766d8c461d55a418e241b5bab432a6ab..0fcfad0ee6d4510c8cbfb22e757e68a442b94b0b:/client/uart.c diff --git a/client/uart.c b/client/uart.c index e3a6a57b..71cea110 100644 --- a/client/uart.c +++ b/client/uart.c @@ -369,7 +369,7 @@ serial_port uart_open(const char* pcPortName) { // Prepare the device control memset(&sp->dcb, 0, sizeof(DCB)); sp->dcb.DCBlength = sizeof(DCB); - if(!BuildCommDCBA("baud=9600 data=8 parity=N stop=1",&sp->dcb)) { + if(!BuildCommDCBA("baud=115200 parity=N data=8 stop=1",&sp->dcb)) { uart_close(sp); return INVALID_SERIAL_PORT; }