From 538d4c8ef66e87fadba55f9ea5daacefc0dfccb8 Mon Sep 17 00:00:00 2001 From: Alex Voinea Date: Thu, 30 Sep 2021 18:42:10 +0200 Subject: [PATCH] Remove useless debug info --- src/modules/usb_cdc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/usb_cdc.cpp b/src/modules/usb_cdc.cpp index a74b4aa..b889dce 100644 --- a/src/modules/usb_cdc.cpp +++ b/src/modules/usb_cdc.cpp @@ -44,12 +44,12 @@ USB_ClassInfo_CDC_Device_t VirtualSerial_CDC_Interface = { /** Event handler for the library USB Connection event. */ void EVENT_USB_Device_Connect(void) { - dbg_modules_P(PSTR("EVENT_USB_Device_Connect")); + // dbg_modules_P(PSTR("EVENT_USB_Device_Connect")); } /** Event handler for the library USB Disconnection event. */ void EVENT_USB_Device_Disconnect(void) { - dbg_modules_P(PSTR("EVENT_USB_Device_Disconnect")); + // dbg_modules_P(PSTR("EVENT_USB_Device_Disconnect")); } /** Event handler for the library USB Configuration Changed event. */