diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-04-11 15:52:48 -0400 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2011-04-11 15:56:38 -0400 |
commit | 9ef9a63da80d79352d1029397865893a78e918fb (patch) | |
tree | 448355c7aa203373e9d93226285943c139c3eb25 /libmaple | |
parent | 33f8df7aabe627f0343c5aa30c0147a8b567652c (diff) | |
download | librambutan-9ef9a63da80d79352d1029397865893a78e918fb.tar.gz librambutan-9ef9a63da80d79352d1029397865893a78e918fb.zip |
USART bugfix.
USART refactor commit f6f9a1122706ed336c52c984d76219dee0594487 only
worked for USART1.
Diffstat (limited to 'libmaple')
-rw-r--r-- | libmaple/usart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmaple/usart.c b/libmaple/usart.c index de808a7..7fe4f53 100644 --- a/libmaple/usart.c +++ b/libmaple/usart.c @@ -99,7 +99,7 @@ void usart_init(usart_dev *dev) { * @brief Configure a serial port's baud rate. * * @param dev Serial port to be configured - * @param clock_speed MCU clock speed, in megahertz. + * @param clock_speed Clock speed, in megahertz. * @param baud Baud rate for transmit/receive. */ void usart_set_baud_rate(usart_dev *dev, uint32 clock_speed, uint32 baud) { |