Added folder firmware/v01 and started working on version 0.1 of the firmware.

This commit is contained in:
Ricardo Work
2017-09-06 16:41:36 +00:00
parent d4644e7a9c
commit 37ce2d7921
73 changed files with 25645 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
all: fontconvert
CC = gcc
CFLAGS = -Wall -I/usr/local/include/freetype2 -I/usr/include/freetype2 -I/usr/include
LIBS = -lfreetype
fontconvert: fontconvert.c
$(CC) $(CFLAGS) $< $(LIBS) -o $@
strip $@
clean:
rm -f fontconvert