Skip to content

Commit f5bac63

Browse files
committed
Added all files
1 parent 17ffd79 commit f5bac63

40 files changed

Lines changed: 1282 additions & 0 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
funkey_prod_screens

Makefile

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Files
2+
S_FILES=funkey_prod_screens.c \
3+
prodScreen_failScreen.c \
4+
prodScreen_waitBattery.c \
5+
prodScreen_displayTest.c \
6+
prodScreen_buttonsTest.c \
7+
prodScreen_speakerTest.c \
8+
prodScreen_ledTest.c \
9+
prodScreen_magnetTest.c \
10+
prodScreen_validation.c
11+
12+
# Output
13+
EXEC=funkey_prod_screens
14+
15+
# Build settings
16+
CC=gcc
17+
# SDL options
18+
CC_SDL=-lSDL -lSDL_image -lSDL_ttf `sdl-config --cflags --libs`
19+
# Other options
20+
CFLAGS=-O3 -std=c99 -Wall
21+
22+
23+
all:Build
24+
25+
Build:
26+
$(CC) $(S_FILES) -o $(EXEC) $(CC_SDL) $(CFLAGS)
27+
28+
clean:
29+
rm $(EXEC)

ProdResources/FreeSansBold.ttf

351 KB
Binary file not shown.

ProdResources/Jaapokki-Regular.otf

32.8 KB
Binary file not shown.

ProdResources/OpenSans-Bold.ttf

219 KB
Binary file not shown.
208 KB
Binary file not shown.
217 KB
Binary file not shown.
208 KB
Binary file not shown.

ProdResources/OpenSans-Italic.ttf

208 KB
Binary file not shown.

ProdResources/OpenSans-Light.ttf

217 KB
Binary file not shown.

0 commit comments

Comments
 (0)