From 7afc4b7b3b264f8774f57715ae638f5c2f80b581 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 9 Jun 2019 18:08:46 +0200 Subject: [PATCH] chg: cleanup --- uart/uart_win32.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/uart/uart_win32.c b/uart/uart_win32.c index bea698bdb..5a5f8b9d3 100644 --- a/uart/uart_win32.c +++ b/uart/uart_win32.c @@ -187,8 +187,6 @@ 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); - // disconnected device return PM3_ENOTTY; } @@ -202,9 +200,6 @@ int uart_send(const serial_port sp, const uint8_t *p_tx, const uint32_t len) { if (res == 0 && errorcode == 2) { return PM3_EIO; } - -// printf("[!!]res %d | send errorcode == %d \n", res, errorcode); - // disconnected device return PM3_ENOTTY; }