From 847005d94f895a68efb20360b139f81933419e8a Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Mon, 19 Sep 2022 17:20:52 +0200 Subject: [PATCH] Adding support for clientPIN. It does not pass the tests yet. Signed-off-by: Pol Henarejos --- src/usb/hid/hid.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/usb/hid/hid.c b/src/usb/hid/hid.c index f9d293f..730bc72 100644 --- a/src/usb/hid/hid.c +++ b/src/usb/hid/hid.c @@ -120,7 +120,6 @@ void tud_hid_set_report_cb(uint8_t itf, uint8_t report_id, hid_report_type_t rep (void) itf; (void) report_id; (void) report_type; - printf("set report\n"); usb_rx(buffer, bufsize); } @@ -253,7 +252,7 @@ int driver_process_usb_packet(uint16_t read) { } // echo back anything we received from host //tud_hid_report(0, buffer, bufsize); - printf("END\n"); + //printf("END\n"); usb_clear_rx(); } return apdu_sent;