make Tx support multi-chunk payload (exceeding buffer size)

This commit is contained in:
2017-11-21 22:17:06 +01:00
parent 041467fcb0
commit ed389d530b
13 changed files with 631 additions and 239 deletions
+11
View File
@@ -0,0 +1,11 @@
CFILES=../utils.c ../../TinyFrame.c
INCLDIRS=-I. -I.. -I../..
CFLAGS=-O0 -ggdb --std=gnu99 -Wno-main -Wall -Wextra $(CFILES) $(INCLDIRS)
run: test.bin
./test.bin
build: test.bin
test.bin: test.c $(CFILES)
gcc test.c $(CFLAGS) -o test.bin