aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-08-13 10:14:45 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-08-13 10:14:45 +0000
commitb6b473a6a1fde7e7154dc2f1a2abaa395d526f62 (patch)
treea3cdbacc09481c62a569f8ddeb274b28320b7691 /os/hal/include
parent28e7808798ebb9c087d2ba15a0366362a50fea9e (diff)
downloadChibiOS-b6b473a6a1fde7e7154dc2f1a2abaa395d526f62.tar.gz
ChibiOS-b6b473a6a1fde7e7154dc2f1a2abaa395d526f62.tar.bz2
ChibiOS-b6b473a6a1fde7e7154dc2f1a2abaa395d526f62.zip
Performance improvements to the STM32 OTG driver.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4562 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/include')
-rw-r--r--os/hal/include/serial_usb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/include/serial_usb.h b/os/hal/include/serial_usb.h
index 4ad65d76d..104375391 100644
--- a/os/hal/include/serial_usb.h
+++ b/os/hal/include/serial_usb.h
@@ -47,11 +47,11 @@
* @brief Serial over USB buffers size.
* @details Configuration parameter, the buffer size must be a multiple of
* the USB data endpoint maximum packet size.
- * @note The default is 64 bytes for both the transmission and receive
+ * @note The default is 256 bytes for both the transmission and receive
* buffers.
*/
#if !defined(SERIAL_USB_BUFFERS_SIZE) || defined(__DOXYGEN__)
-#define SERIAL_USB_BUFFERS_SIZE 64
+#define SERIAL_USB_BUFFERS_SIZE 256
#endif
/** @} */