From dd404a67a10345d98caeb65b9d133a9f42ac0568 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 14 Apr 2019 11:09:31 +0200 Subject: [PATCH] Fix: USART - default speeds is lower (@ryan) --- client/proxmark3.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/proxmark3.c b/client/proxmark3.c index 600d975e3..ffb8b295f 100644 --- a/client/proxmark3.c +++ b/client/proxmark3.c @@ -364,8 +364,13 @@ int main(int argc, char *argv[]) { } } + // default speed for USB 460800, USART(FPC serial) 115200 baud if (speed == 0) +#ifdef WITH_FPC + speed = 115200; +#else speed = 460800; +#endif // If the user passed the filename of the 'script' to execute, get it from last parameter if (lastarg) {