diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-12-24 09:10:49 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-12-24 09:10:49 +0000 |
commit | b3b4c6ad41cdaf70f38162b0764b18758f79feb3 (patch) | |
tree | 46126dd1a38f373acf27693a76daf1e13e27d90b /testhal/STM32/STM32F7xx/USB_CDC/main.c | |
parent | 2296afaa34c8f4c19750a410e336b6f565918bcc (diff) | |
download | ChibiOS-b3b4c6ad41cdaf70f38162b0764b18758f79feb3.tar.gz ChibiOS-b3b4c6ad41cdaf70f38162b0764b18758f79feb3.tar.bz2 ChibiOS-b3b4c6ad41cdaf70f38162b0764b18758f79feb3.zip |
Buffers queues should be final now.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8638 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32F7xx/USB_CDC/main.c')
-rw-r--r-- | testhal/STM32/STM32F7xx/USB_CDC/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testhal/STM32/STM32F7xx/USB_CDC/main.c b/testhal/STM32/STM32F7xx/USB_CDC/main.c index f2e56dedc..5b25210be 100644 --- a/testhal/STM32/STM32F7xx/USB_CDC/main.c +++ b/testhal/STM32/STM32F7xx/USB_CDC/main.c @@ -111,7 +111,7 @@ static void cmd_write(BaseSequentialStream *chp, int argc, char *argv[]) { }
while (chnGetTimeout((BaseChannel *)chp, TIME_IMMEDIATE) == Q_TIMEOUT) {
-#if 1
+#if 0
/* Writing in stream mode.*/
streamWrite(&SDU2, buf, sizeof buf - 1);
#else
|