diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-11-28 10:18:46 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-11-28 10:18:46 +0000 |
commit | db0b9dbf0bcce6b53647bd3bd25ff88e45794f16 (patch) | |
tree | bc8ea132fbad6441ee988d264afaa122dd668b10 /testhal/STM32/STM32F7xx | |
parent | be48aa8f69331b6ec5b8594cf72a9563a75ab646 (diff) | |
download | ChibiOS-db0b9dbf0bcce6b53647bd3bd25ff88e45794f16.tar.gz ChibiOS-db0b9dbf0bcce6b53647bd3bd25ff88e45794f16.tar.bz2 ChibiOS-db0b9dbf0bcce6b53647bd3bd25ff88e45794f16.zip |
Fixed bug #674.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8536 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32F7xx')
-rw-r--r-- | testhal/STM32/STM32F7xx/USB_CDC/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testhal/STM32/STM32F7xx/USB_CDC/main.c b/testhal/STM32/STM32F7xx/USB_CDC/main.c index d992623c0..73ad1ef18 100644 --- a/testhal/STM32/STM32F7xx/USB_CDC/main.c +++ b/testhal/STM32/STM32F7xx/USB_CDC/main.c @@ -213,6 +213,10 @@ int main(void) { chThdRelease(shelltp); /* Recovers memory of the previous shell. */
shelltp = NULL; /* Triggers spawning of a new shell. */
}
+ if (palReadPad(GPIOI, GPIOI_BUTTON_USER)) {
+ usbDisconnectBus(serusbcfg.usbp);
+ usbStop(serusbcfg.usbp);
+ }
chThdSleepMilliseconds(1000);
}
}
|