added the ASSERT and VERIFY macros to logging to help detect problems

This commit is contained in:
2019-12-06 23:46:21 -07:00
parent 82ca8371e6
commit 0dc56d49e5
4 changed files with 22 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
OBJS=main.o sysinput.o fbinit.o fbprimitive.o log.o gpio.o msg_queue.o time_func.o config.o splash.o
LIBS=-lbcm2835 -lpthread
CFLAGS=-g
CFLAGS=-g -O -DDEBUG_ASSERT
upiwin: $(OBJS)
gcc -o upiwin $(OBJS) $(LIBS)