diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-04-15 16:43:57 -0400 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2011-04-15 16:43:57 -0400 |
commit | 7fdb4c986452756801eb8ba5eec94f9823e0b1c0 (patch) | |
tree | 832035982575f70dfc8758ca186c3dccb2dcfe81 /libmaple | |
parent | c258d9c6c86efdb74a28b87f49c4b6fd0e517904 (diff) | |
download | librambutan-7fdb4c986452756801eb8ba5eec94f9823e0b1c0.tar.gz librambutan-7fdb4c986452756801eb8ba5eec94f9823e0b1c0.zip |
usart.c comment fixes.
License header made 80-column clean. usart_irq() comment for the
USART_SAFE_INSERT case made easier to understand.
Diffstat (limited to 'libmaple')
-rw-r--r-- | libmaple/usart.c | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/libmaple/usart.c b/libmaple/usart.c index 7fe4f53..22542fd 100644 --- a/libmaple/usart.c +++ b/libmaple/usart.c @@ -3,23 +3,25 @@ * * Copyright (c) 2010 Perry Hung. * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, copy, + * modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. *****************************************************************************/ /** @@ -205,7 +207,8 @@ void usart_putudec(usart_dev *dev, uint32 val) { static inline void usart_irq(usart_dev *dev) { #ifdef USART_SAFE_INSERT - /* Ignore new bytes if the user defines USART_SAFE_INSERT. */ + /* If the buffer is full and the user defines USART_SAFE_INSERT, + * ignore new bytes. */ rb_safe_insert(dev->rb, (uint8)dev->regs->DR); #else /* By default, push bytes around in the ring buffer. */ |