Whitespace changes in the tiva(stellaris/lpc directory structure commit
This commit is contained in:
committed by
Frantisek Burian
parent
1740fee230
commit
06208be477
@@ -22,4 +22,3 @@ BINARY = uart_echo_interrupt
|
||||
LDSCRIPT = ../ek-lm4f120xl.ld
|
||||
|
||||
include ../../Makefile.include
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -69,7 +69,7 @@ void uart0_isr(void)
|
||||
uart_send(UART0, rx);
|
||||
irq_clear |= UART_INT_RX;
|
||||
}
|
||||
|
||||
|
||||
uart_clear_interrupt_flag(UART0, irq_clear);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user