From 9994d05d7fdd44ac524fc1dfef43f53390c8a05e Mon Sep 17 00:00:00 2001 From: "D.R.racer" Date: Tue, 12 Oct 2021 19:18:11 +0200 Subject: [PATCH] Reformat usb_cdc.cpp --- src/modules/usb_cdc.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/modules/usb_cdc.cpp b/src/modules/usb_cdc.cpp index a97e2b9..b78f5e5 100644 --- a/src/modules/usb_cdc.cpp +++ b/src/modules/usb_cdc.cpp @@ -8,7 +8,6 @@ extern "C" { #include "Descriptors.h" #include "lufa/LUFA/Drivers/USB/USB.h" - /** Standard file stream for the CDC interface when set up, so that the virtual CDC COM port can be * used like any regular character stream in the C APIs. */ @@ -93,7 +92,7 @@ void CDC::Init() { USB_Init(); /* Create a regular character stream for the interface so that it can be used with the stdio.h functions */ - CDC_Device_CreateStream(&VirtualSerial_CDC_Interface, &USBSerialStream); + CDC_Device_CreateStream(&VirtualSerial_CDC_Interface, &USBSerialStream); stdout = &USBSerialStream; }