Removed trailing whitespaces

This commit is contained in:
BlackMark 2019-08-01 21:51:46 +02:00
parent f0a3cd6da8
commit 6e45340993
2 changed files with 11 additions and 6 deletions

View File

@ -6,15 +6,18 @@ Software: AVR-GCC 4.x
Hardware: any AVR with built-in UART,
License: GNU General Public License
DESCRIPTION:
An interrupt is generated when the UART has finished transmitting or
receiving a byte. The interrupt handling routines use circular buffers
for buffering received and transmitted data.
The UART_RX_BUFFER_SIZE and UART_TX_BUFFER_SIZE variables define
the buffer size in bytes. Note that these variables must be a
power of 2.
USAGE:
Refere to the header file uart.h for a description of the routines.
See also example test_uart.c.
@ -22,6 +25,7 @@ USAGE:
NOTES:
Based on Atmel Application Note AVR306
LICENSE:
Copyright (C) 2015 Peter Fleury, GNU General Public License Version 3
@ -35,6 +39,7 @@ LICENSE:
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*************************************************************************/
#include "uart.h"
#include <avr/interrupt.h>