Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: FTHR_USB_serial API_2x_ECO
Diff: USBDevice/USBDevice.cpp
- Revision:
- 18:78bdbce94509
- Parent:
- 17:bbd6dac92961
- Child:
- 25:7c72828865f3
diff -r bbd6dac92961 -r 78bdbce94509 USBDevice/USBDevice.cpp --- a/USBDevice/USBDevice.cpp Thu Jan 23 17:30:20 2014 +0000 +++ b/USBDevice/USBDevice.cpp Tue Feb 18 11:00:19 2014 +0000 @@ -703,12 +703,15 @@ return (device.state == CONFIGURED); } -void USBDevice::connect(void) +void USBDevice::connect(bool blocking) { /* Connect device */ USBHAL::connect(); - /* Block if not configured */ - while (!configured()); + + if (blocking) { + /* Block if not configured */ + while (!configured()); + } } void USBDevice::disconnect(void)