-
Notifications
You must be signed in to change notification settings - Fork 327
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stm32f429i-disco: slightly interactive display demo with fonts and ve…
…ctor graphics
- Loading branch information
Showing
32 changed files
with
8,665 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "libopencm3"] | ||
path = libopencm3 | ||
url = https://github.com/libopencm3/libopencm3.git | ||
url = https://github.com/H2OBrain/libopencm3.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
examples/stm32/f4/stm32f429i-discovery/lcd-ltdc-touch/Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
OBJS = clock.o gfx_locm3.o lcd_ili9341.o sdram.o fonts/Tamsyn5x9b_9.o fonts/Tamsyn5x9r_9.o | ||
OBJS += i2c.o touchscreen_controller_stmpe811.o | ||
|
||
BINARY = application | ||
|
||
CFLAGS = -O0 -g | ||
|
||
# we use sin/cos from the library | ||
LDLIBS = -lm | ||
|
||
LDSCRIPT = ../stm32f429i-discovery.ld | ||
|
||
include ../../Makefile.include |
7 changes: 7 additions & 0 deletions
7
examples/stm32/f4/stm32f429i-discovery/lcd-ltdc-touch/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# README | ||
|
||
Small test with minimal graphics lib for ltdc graphics controller. | ||
|
||
Two additional python scripts are provided to create your own font and bitmap header files. | ||
|
||
06/01/16 H2OBrain |
Oops, something went wrong.