diff options
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/platforms/AT91SAM7/serial_lld.c | 2 | ||||
-rw-r--r-- | os/hal/platforms/AVR/serial_lld.c | 2 | ||||
-rw-r--r-- | os/hal/platforms/AVR/serial_lld.h | 16 | ||||
-rw-r--r-- | os/hal/platforms/LPC214x/serial_lld.c | 2 |
4 files changed, 5 insertions, 17 deletions
diff --git a/os/hal/platforms/AT91SAM7/serial_lld.c b/os/hal/platforms/AT91SAM7/serial_lld.c index d310153e6..b781b2115 100644 --- a/os/hal/platforms/AT91SAM7/serial_lld.c +++ b/os/hal/platforms/AT91SAM7/serial_lld.c @@ -67,7 +67,7 @@ SerialDriver SD2; /** @brief Driver default configuration.*/
static const SerialConfig default_config = {
- 38400,
+ SERIAL_DEFAULT_BITRATE,
AT91C_US_USMODE_NORMAL | AT91C_US_CLKS_CLOCK |
AT91C_US_CHRL_8_BITS | AT91C_US_PAR_NONE | AT91C_US_NBSTOP_1_BIT
};
diff --git a/os/hal/platforms/AVR/serial_lld.c b/os/hal/platforms/AVR/serial_lld.c index cdcfa97dc..53aec65d6 100644 --- a/os/hal/platforms/AVR/serial_lld.c +++ b/os/hal/platforms/AVR/serial_lld.c @@ -59,7 +59,7 @@ SerialDriver SD2; * @brief Driver default configuration.
*/
static const SerialConfig default_config = {
- UBRR(DEFAULT_USART_BITRATE),
+ UBRR(SERIAL_DEFAULT_BITRATE),
(1 << UCSZ1) | (1 << UCSZ0)
};
diff --git a/os/hal/platforms/AVR/serial_lld.h b/os/hal/platforms/AVR/serial_lld.h index 79d070635..1d06b6d79 100644 --- a/os/hal/platforms/AVR/serial_lld.h +++ b/os/hal/platforms/AVR/serial_lld.h @@ -38,24 +38,12 @@ /*===========================================================================*/
/**
- * @brief Default bit rate.
- * @details Configuration parameter, at startup the UARTs are configured at
- * this speed.
- * @note It is possible to use @p SetUART() in order to change the working
- * parameters at runtime.
- */
-#if !defined(DEFAULT_USART_BITRATE) || defined(__DOXYGEN__)
-#define DEFAULT_USART_BITRATE 38400
-#endif
-
-
-/**
* @brief USART0 driver enable switch.
* @details If set to @p TRUE the support for USART0 is included.
* @note The default is @p FALSE.
*/
#if !defined(USE_AVR_USART0) || defined(__DOXYGEN__)
-#define USE_AVR_USART0 FALSE
+#define USE_AVR_USART0 TRUE
#endif
/**
@@ -64,7 +52,7 @@ * @note The default is @p TRUE.
*/
#if !defined(USE_AVR_USART1) || defined(__DOXYGEN__)
-#define USE_AVR_USART1 TRUE
+#define USE_AVR_USART1 TRUE
#endif
/*===========================================================================*/
diff --git a/os/hal/platforms/LPC214x/serial_lld.c b/os/hal/platforms/LPC214x/serial_lld.c index ea198fd5c..cfc742736 100644 --- a/os/hal/platforms/LPC214x/serial_lld.c +++ b/os/hal/platforms/LPC214x/serial_lld.c @@ -49,7 +49,7 @@ SerialDriver SD2; /** @brief Driver default configuration.*/
static const SerialConfig default_config = {
- 38400,
+ SERIAL_DEFAULT_BITRATE,
LCR_WL8 | LCR_STOP1 | LCR_NOPARITY,
FCR_TRIGGER0
};
|