From 7928a824345a0d96aa97fd73326a9c6d6585b916 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Fri, 10 May 2019 07:46:49 +0200 Subject: [PATCH] uart_win32: Remove debug msgs --- uart/uart_win32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uart/uart_win32.c b/uart/uart_win32.c index fe25a2887..e516a42d7 100644 --- a/uart/uart_win32.c +++ b/uart/uart_win32.c @@ -171,7 +171,7 @@ int uart_receive(const serial_port sp, uint8_t *pbtRx, uint32_t pszMaxRxLen, uin return PM3_EIO; } - printf("[!]res %d | rx errorcode == %d \n", res, errorcode); +// printf("[!]res %d | rx errorcode == %d \n", res, errorcode); return res; } @@ -186,7 +186,7 @@ int uart_send(const serial_port sp, const uint8_t *p_tx, const uint32_t len) { return PM3_EIO; } - printf("[!!]res %d | send errorcode == %d \n", res, errorcode); +// printf("[!!]res %d | send errorcode == %d \n", res, errorcode); return PM3_ENOTTY; }