Implemented multipart frame sending

This commit is contained in:
2018-01-26 11:39:31 +01:00
parent 0ed3fd91f7
commit 13c74ea6e6
8 changed files with 766 additions and 231 deletions
+12
View File
@@ -0,0 +1,12 @@
CFILES=../utils.c ../../TinyFrame.c
INCLDIRS=-I. -I.. -I../..
CFLAGS=-O0 -ggdb --std=gnu99 -Wno-main -Wall -Wextra $(CFILES) $(INCLDIRS)
build: test.bin
run: test.bin
./test.bin
test.bin: test.c $(CFILES)
gcc test.c $(CFLAGS) -o test.bin