A simple library for building and parsing data frames for serial interfaces (like UART / RS232)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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
|
|
|