Merge pull request #61 from xC0000005/CallsetupUSB

Call SetupUSB
This commit is contained in:
Daniel Fekete 2018-08-28 06:23:33 +02:00 committed by GitHub
commit 470e6f6445
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -56,7 +56,7 @@ int main(void)
#endif
#if defined(USB_BASE) || defined(USB_OTG_DEVICE_BASE)
setupUSB();
#ifdef MENU_USB_SERIAL
USBDeviceFS.beginCDC();
#elif MENU_USB_MASS_STORAGE
@ -64,12 +64,12 @@ int main(void)
#endif
#endif
setup();
for (;;) {
loop();
}
return 0;
}