Whitespace changes in the tiva(stellaris/lpc directory structure commit

This commit is contained in:
Uwe Bonnes
2014-02-13 20:01:58 +01:00
committed by Frantisek Burian
parent 1740fee230
commit 06208be477
28 changed files with 14 additions and 33 deletions

View File

@@ -22,4 +22,3 @@ BINARY = uart_echo_interrupt
LDSCRIPT = ../ek-lm4f120xl.ld
include ../../Makefile.include

View File

@@ -4,7 +4,7 @@ README
This example demonstrates the ease of setting up the UART with libopencm3, and
using UART interrupts. UART echo is achieved by echoing back received characters
from within the interrupt service routine. This has the advantage over using
from within the interrupt service routine. This has the advantage over using
blocking reads and writes that the main program loop is freed for other tasks.
The UART is set up as 921600-8N1.

View File

@@ -69,7 +69,7 @@ void uart0_isr(void)
uart_send(UART0, rx);
irq_clear |= UART_INT_RX;
}
uart_clear_interrupt_flag(UART0, irq_clear);
}