Merge pull request #354 from stevstrong/patch-9

Update boards.cpp [F4] - remove repeated call to setup serial USB
This commit is contained in:
Roger Clark 2017-10-08 10:54:23 +11:00 committed by GitHub
commit fd7bd9595a
1 changed files with 1 additions and 2 deletions

View File

@ -69,8 +69,7 @@ void init(void) {
setupTimers();
#ifdef SERIAL_USB
setupUSB();
SerialUSB.begin();
SerialUSB.begin(); // includes { setupUSB(); }
#endif
}