From ee98340a0393195100435717af358144b59e1931 Mon Sep 17 00:00:00 2001 From: Conor Patrick Date: Sat, 2 Feb 2019 00:24:42 -0500 Subject: [PATCH] temporarily remove prints at start --- fido2/main.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/fido2/main.c b/fido2/main.c index 3849633..27b68a4 100644 --- a/fido2/main.c +++ b/fido2/main.c @@ -41,7 +41,7 @@ int main(int argc, char * argv[]) set_logging_mask( /*0*/ - // TAG_GEN| + TAG_GEN| // TAG_MC | // TAG_GA | // TAG_WALLET | @@ -60,20 +60,20 @@ int main(int argc, char * argv[]) ); device_init(); - printf1(TAG_GEN,"init device\n"); + // printf1(TAG_GEN,"init device\n"); usbhid_init(); - printf1(TAG_GEN,"init usb\n"); + // printf1(TAG_GEN,"init usb\n"); ctaphid_init(); - printf1(TAG_GEN,"init ctaphid\n"); + // printf1(TAG_GEN,"init ctaphid\n"); - ctap_init(); - printf1(TAG_GEN,"init ctap\n"); + // ctap_init(); + // printf1(TAG_GEN,"init ctap\n"); memset(hidmsg,0,sizeof(hidmsg)); - printf1(TAG_GEN,"recv'ing hid msg \n"); + // printf1(TAG_GEN,"recv'ing hid msg \n"); while(1)