From 2406075086c6305a60edbcf4ce4694fb26952903 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sosth=C3=A8ne=20Gu=C3=A9don?= Date: Fri, 13 Dec 2024 11:49:30 +0100 Subject: [PATCH] CCID: Remove touch received info output The current way is not valid, as the output is only for wait extensions, and not for touch information. There's also no way to distinguish an error from a correct touch received from the CCID layer. It's better to remove this display --- src/ccid.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/ccid.c b/src/ccid.c index a2cc919..3b181a4 100644 --- a/src/ccid.c +++ b/src/ccid.c @@ -223,11 +223,6 @@ int ccid_process_single(libusb_device_handle *handle, uint8_t *receiving_buffer, fflush(stdout); } continue; - } else { - if (prev_status == AWAITING_FOR_TOUCH_STATUS_CODE) { - printf(". touch received\n"); - fflush(stdout); - } } prev_status = iccResult.status; if (iccResult.chain == 0 || iccResult.chain == 2) {