diff options
Diffstat (limited to 'os/hal/include/serial.h')
-rw-r--r-- | os/hal/include/serial.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/os/hal/include/serial.h b/os/hal/include/serial.h index 9a2c8ec78..f6b54bb5d 100644 --- a/os/hal/include/serial.h +++ b/os/hal/include/serial.h @@ -55,13 +55,22 @@ /*===========================================================================*/
/**
+ * @brief Default bit rate.
+ * @details Configuration parameter, this is the baud rate selected for the
+ * default configuration.
+ */
+#if !defined(DEFAULT_USART_BITRATE) || defined(__DOXYGEN__)
+#define SERIAL_DEFAULT_BITRATE 38400
+#endif
+
+/**
* @brief Serial buffers size.
* @details Configuration parameter, you can change the depth of the queue
* buffers depending on the requirements of your application.
* @note The default is 64 bytes for both the transmission and receive buffers.
*/
#if !defined(SERIAL_BUFFERS_SIZE) || defined(__DOXYGEN__)
-#define SERIAL_BUFFERS_SIZE 128
+#define SERIAL_BUFFERS_SIZE 64
#endif
/*===========================================================================*/
|