From 308b5c410f119a0d901f37fc3b7061d9883624b0 Mon Sep 17 00:00:00 2001 From: stevstrong Date: Fri, 6 Oct 2017 18:04:56 +0200 Subject: [PATCH] Update boards.cpp - remove repeated call to setup serial USB --- STM32F4/cores/maple/boards.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/STM32F4/cores/maple/boards.cpp b/STM32F4/cores/maple/boards.cpp index 0d55e94..4b0480f 100644 --- a/STM32F4/cores/maple/boards.cpp +++ b/STM32F4/cores/maple/boards.cpp @@ -69,8 +69,7 @@ void init(void) { setupTimers(); #ifdef SERIAL_USB - setupUSB(); - SerialUSB.begin(); + SerialUSB.begin(); // includes { setupUSB(); } #endif }