[stm32f429i-discovery] Added LTDC DMA example.

This example is just using buffers and built in alpha overlay
functionality to animate a dmond floating on a checker board. After
initializing of the frame buffers only 7 registers are being modified to
implement the animation.
This commit is contained in:
kbob
2015-02-15 09:14:33 -08:00
committed by Piotr Esden-Tempski
parent 408ba8c885
commit 9cee61f089
11 changed files with 1514 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
OBJS = sdram.o clock.o console.o lcd-spi.o
BINARY = lcd-dma
# we use sin/cos from the library
LDLIBS += -lm
LDSCRIPT = ../stm32f429i-discovery.ld
include ../../Makefile.include