lm4f: Add basic UART implementation

Add basic functionality needed to setup the UART and send/recieve data.
Interrupts, DMA, and more advanced features are not implemented in this patch.

Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
This commit is contained in:
Alexandru Gagniuc
2012-11-23 21:25:25 -06:00
committed by Piotr Esden-Tempski
parent a105bcaa83
commit 8112861b60
3 changed files with 469 additions and 1 deletions

View File

@@ -32,7 +32,7 @@ CFLAGS = -Os -g \
-ffunction-sections -fdata-sections -MD -DLM4F
# ARFLAGS = rcsv
ARFLAGS = rcs
OBJS = gpio.o vector.o assert.o systemcontrol.o rcc.o
OBJS = gpio.o vector.o assert.o systemcontrol.o rcc.o uart.o
VPATH += ../cm3